Repository: NathanReeves/BlueCubeMod Branch: master Commit: cc2aa07256de Files: 32 Total size: 737.3 KB Directory structure: gitextract_qpei2s2d/ ├── .gitignore ├── Firmware/ │ ├── BlueCubeMod/ │ │ ├── Makefile │ │ ├── main/ │ │ │ ├── BlueCubeMod.c │ │ │ └── component.mk │ │ ├── sdkconfig │ │ └── set_port.sh │ └── BlueCubeModv2/ │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── main/ │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── main.c │ ├── sdkconfig │ ├── sdkconfig.ci │ └── sdkconfig.defaults ├── LICENSE ├── PCB/ │ ├── DrillFiles/ │ │ └── drills.xln │ ├── Eagle/ │ │ ├── BlueCubeModR2.brd │ │ └── BlueCubeModR2.sch │ └── GerberFiles/ │ ├── copper_bottom_l4.gbr │ ├── copper_inner_l2.gbr │ ├── copper_inner_l3.gbr │ ├── copper_top_l1.gbr │ ├── gerber_job.gbrjob │ ├── profile.gbr │ ├── silkscreen_bottom.gbr │ ├── silkscreen_top.gbr │ ├── soldermask_bottom.gbr │ ├── soldermask_top.gbr │ ├── solderpaste_bottom.gbr │ └── solderpaste_top.gbr └── README.md ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ .DS_Store Firmware/BlueCubeModv2/build/ ================================================ FILE: Firmware/BlueCubeMod/Makefile ================================================ # # Bluetooth GameCube controller mod for ESP32 port # # Generated by Nathan Reeves # PROJECT_NAME := BlueCubeMod include $(IDF_PATH)/make/project.mk ================================================ FILE: Firmware/BlueCubeMod/main/BlueCubeMod.c ================================================ /* * Copyright (C) 2014 BlueKitchen GmbH * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the copyright holders nor the names of * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * 4. Any redistribution, use, or modification is done solely for * personal benefit and not for any commercial purpose or for * monetary gain. * * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * Please inquire about commercial licensing options at * contact@bluekitchen-gmbh.com * */ #define __BTSTACK_FILE__ "BlueCubeMod.c" #include #include #include #include #include #include #include "btstack.h" #include "btstack_event.h" #include "btstack_stdin.h" #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "freertos/queue.h" #include "freertos/semphr.h" #include "btstack_run_loop_freertos.h" #include "driver/gpio.h" #include "esp_err.h" #include "esp_log.h" #include "driver/rmt.h" #include "driver/periph_ctrl.h" #include "soc/rmt_reg.h" /* GameCube controller advertises as a Dualshock 4 "Wireless Controller" Mac/PC/PS4 supported (tested using Dolphin Emulator on Mac) For Switch/RPi, use an 8Bitdo USB adapter */ /* Wiring Connect the following pins together: -RMT_TX_GPIO_NUM (18) -RMT_RX_GPIO_NUM (23) -GameCube controller's data pin (Red) Connect GND wires (Black) */ #define RMT_TX_GPIO_NUM 18 // TX GPIO ---- #define RMT_RX_GPIO_NUM 23 // RX GPIO ---- #define RMT_TX_CHANNEL 2 /*!< RMT channel for transmitter */ #define RMT_RX_CHANNEL 3 /*!< RMT channel for receiver */ #define RMT_CLK_DIV 80 /*!< RMT counter clock divider */ #define RMT_TICK_10_US (80000000/RMT_CLK_DIV/100000) /*!< RMT counter value for 10 us.(Source clock is APB clock) */ #define rmt_item32_tIMEOUT_US 9500 /*!< RMT receiver timeout value(us) */ //HID Descriptor for GameCube Controller matching a DS4 const uint8_t hid_descriptor_gamecube[] = { 0x05, 0x01, // Usage Page (Generic Desktop Ctrls) 0x09, 0x05, // Usage (Game Pad) 0xA1, 0x01, // Collection (Application) //Padding 0x95, 0x03, // REPORT_COUNT = 3 0x75, 0x08, // REPORT_SIZE = 8 0x81, 0x03, // INPUT = Cnst,Var,Abs //Sticks 0x09, 0x30, // Usage (X) 0x09, 0x31, // Usage (Y) 0x09, 0x32, // Usage (Z) 0x09, 0x35, // Usage (Rz) 0x15, 0x00, // Logical Minimum (0) 0x26, 0xFF, 0x00, // Logical Maximum (255) 0x75, 0x08, // Report Size (8) 0x95, 0x04, // Report Count (4) 0x81, 0x02, // Input (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position) //DPAD 0x09, 0x39, // Usage (Hat switch) 0x15, 0x00, // Logical Minimum (0) 0x25, 0x07, // Logical Maximum (7) 0x35, 0x00, // Physical Minimum (0) 0x46, 0x3B, 0x01, // Physical Maximum (315) 0x65, 0x14, // Unit (System: English Rotation, Length: Centimeter) 0x75, 0x04, // Report Size (4) 0x95, 0x01, // Report Count (1) 0x81, 0x42, // Input (Data,Var,Abs,No Wrap,Linear,Preferred State,Null State) //Buttons 0x65, 0x00, // Unit (None) 0x05, 0x09, // Usage Page (Button) 0x19, 0x01, // Usage Minimum (0x01) 0x29, 0x0E, // Usage Maximum (0x0E) 0x15, 0x00, // Logical Minimum (0) 0x25, 0x01, // Logical Maximum (1) 0x75, 0x01, // Report Size (1) 0x95, 0x0E, // Report Count (14) 0x81, 0x02, // Input (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position) //Padding 0x06, 0x00, 0xFF, // Usage Page (Vendor Defined 0xFF00) 0x09, 0x20, // Usage (0x20) 0x75, 0x06, // Report Size (6) 0x95, 0x01, // Report Count (1) 0x15, 0x00, // Logical Minimum (0) 0x25, 0x7F, // Logical Maximum (127) 0x81, 0x02, // Input (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position) //Triggers 0x05, 0x01, // Usage Page (Generic Desktop Ctrls) 0x09, 0x33, // Usage (Rx) 0x09, 0x34, // Usage (Ry) 0x15, 0x00, // Logical Minimum (0) 0x26, 0xFF, 0x00, // Logical Maximum (255) 0x75, 0x08, // Report Size (8) 0x95, 0x02, // Report Count (2) 0x81, 0x02, 0xc0 }; //Based on https://www.psdevwiki.com/ps4/DS4-BT // - - - - Lx Ly Cx Cy B1 B2 0 LT RT static uint8_t send_report[] = { 0xa1, 0x11, 0xc0, 0x00, 0x7d, 0x7d, 0x7d, 0x7d, 0x08, 0, 0, 0, 0}; static uint8_t hid_service_buffer[400]; static uint8_t device_id_sdp_service_buffer[400]; static const char hid_device_name[] = "Wireless Controller"; static btstack_packet_callback_registration_t hci_event_callback_registration; static uint16_t hid_cid = 0; // Calibration static int lxcalib = 0; static int lycalib = 0; static int cxcalib = 0; static int cycalib = 0; static int lcalib = 0; static int rcalib = 0; //Buttons and sticks static uint8_t but1_send = 0; static uint8_t but2_send = 0; static uint8_t lx_send = 0; static uint8_t ly_send = 0; static uint8_t cx_send = 0; static uint8_t cy_send = 0; static uint8_t lt_send = 0; static uint8_t rt_send = 0; //RMT Transmitter Init rmt_item32_t items[25]; rmt_config_t rmt_tx; static void rmt_tx_init() { rmt_tx.channel = RMT_TX_CHANNEL; rmt_tx.gpio_num = RMT_TX_GPIO_NUM; rmt_tx.mem_block_num = 1; rmt_tx.clk_div = RMT_CLK_DIV; rmt_tx.tx_config.loop_en = false; rmt_tx.tx_config.carrier_freq_hz = 24000000; rmt_tx.tx_config.carrier_level = 1; rmt_tx.tx_config.carrier_en = 0; rmt_tx.tx_config.idle_level = 1; rmt_tx.tx_config.idle_output_en = true; rmt_tx.rmt_mode = 0; rmt_config(&rmt_tx); rmt_driver_install(rmt_tx.channel, 0, 0); //Fill items[] with console->controller command: 0100 0000 0000 0011 0000 0010 items[0].duration0 = 3; items[0].level0 = 0; items[0].duration1 = 1; items[0].level1 = 1; items[1].duration0 = 1; items[1].level0 = 0; items[1].duration1 = 3; items[1].level1 = 1; int j; for(j = 0; j < 12; j++) { items[j+2].duration0 = 3; items[j+2].level0 = 0; items[j+2].duration1 = 1; items[j+2].level1 = 1; } items[14].duration0 = 1; items[14].level0 = 0; items[14].duration1 = 3; items[14].level1 = 1; items[15].duration0 = 1; items[15].level0 = 0; items[15].duration1 = 3; items[15].level1 = 1; for(j = 0; j < 8; j++) { items[j+16].duration0 = 3; items[j+16].level0 = 0; items[j+16].duration1 = 1; items[j+16].level1 = 1; } items[24].duration0 = 1; items[24].level0 = 0; items[24].duration1 = 3; items[24].level1 = 1; } //RMT Receiver Init rmt_config_t rmt_rx; static void rmt_rx_init() { rmt_rx.channel = RMT_RX_CHANNEL; rmt_rx.gpio_num = RMT_RX_GPIO_NUM; rmt_rx.clk_div = RMT_CLK_DIV; rmt_rx.mem_block_num = 4; rmt_rx.rmt_mode = RMT_MODE_RX; rmt_rx.rx_config.idle_threshold = rmt_item32_tIMEOUT_US / 10 * (RMT_TICK_10_US); rmt_config(&rmt_rx); } //Polls controller and formats response //GameCube Controller Protocol: http://www.int03.co.uk/crema/hardware/gamecube/gc-control.html static void get_buttons() { uint8_t but1 = 0; uint8_t but2 = 0; uint8_t dpad = 0x08;//Released uint8_t lx = 0; uint8_t ly = 0; uint8_t cx = 0; uint8_t cy = 0; uint8_t lt = 0; uint8_t rt = 0; //Sample and find calibration value for sticks int calib_loop = 0; int xsum = 0; int ysum = 0; int cxsum = 0; int cysum = 0; int lsum = 0; int rsum = 0; while(calib_loop < 5) { lx = 0; ly = 0; cx = 0; cy = 0; lt = 0; rt = 0; rmt_write_items(rmt_tx.channel, items, 25, 0); rmt_rx_start(rmt_rx.channel, 1); vTaskDelay(10); rmt_item32_t* item = (rmt_item32_t*) (RMT_CHANNEL_MEM(rmt_rx.channel)); if(item[33].duration0 == 1 && item[27].duration0 == 1 && item[26].duration0 == 3 && item[25].duration0 == 3) { //LEFT STICK X for(int x = 8; x > -1; x--) { if((item[x+41].duration0 == 1)) { lx += pow(2, 8-x-1); } } //LEFT STICK Y for(int x = 8; x > -1; x--) { if((item[x+49].duration0 == 1)) { ly += pow(2, 8-x-1); } } //C STICK X for(int x = 8; x > -1; x--) { if((item[x+57].duration0 == 1)) { cx += pow(2, 8-x-1); } } //C STICK Y for(int x = 8; x > -1; x--) { if((item[x+65].duration0 == 1)) { cy += pow(2, 8-x-1); } } //R AN for(int x = 8; x > -1; x--) { if((item[x+73].duration0 == 1)) { rt += pow(2, 8-x-1); } } //L AN for(int x = 8; x > -1; x--) { if((item[x+81].duration0 == 1)) { lt += pow(2, 8-x-1); } } xsum += lx; ysum += ly; cxsum += cx; cysum += cy; lsum += lt; rsum += rt; calib_loop++; } } //Set Stick Calibration lxcalib = 127-(xsum/5); lycalib = 127-(ysum/5); cxcalib = 127-(cxsum/5); cycalib = 127-(cysum/5); lcalib = 127-(lsum/5); rcalib = 127-(rsum/5); while(1) { but1 = 0; but2 = 0; dpad = 0x08; lx = 0; ly = 0; cx = 0; cy = 0; lt = 0; rt = 0; //Write command to controller rmt_write_items(rmt_tx.channel, items, 25, 0); rmt_rx_start(rmt_rx.channel, 1); vTaskDelay(6); //6ms between sample rmt_item32_t* item = (rmt_item32_t*) (RMT_CHANNEL_MEM(rmt_rx.channel)); //Check first 3 bits and high bit at index 33 if(item[33].duration0 == 1 && item[27].duration0 == 1 && item[26].duration0 == 3 && item[25].duration0 == 3) { //Button report: first item is item[25] //0 0 1 S Y X B A //1 L R Z U D R L //Joystick X (8bit) //Joystick Y (8bit) //C-Stick X (8bit) //C-Stick Y (8bit) //L Trigger Analog (8/4bit) //R Trigger Analog (8/4bit) //Buttons1 if(item[32].duration0 == 1) but1 += 0x40;//A if(item[31].duration0 == 1) but1 += 0x20;//B if(item[30].duration0 == 1) but1 += 0x80;//X if(item[29].duration0 == 1) but1 += 0x10;//Y //DPAD if(item[40].duration0 == 1) dpad = 0x06;//L if(item[39].duration0 == 1) dpad = 0x02;//R if(item[38].duration0 == 1) dpad = 0x04;//D if(item[37].duration0 == 1) dpad = 0x00;//U //Buttons2 if(item[36].duration0 == 1) but2 += 0x02;//Z if(item[35].duration0 == 1) but2 += 0x08;//RB if(item[34].duration0 == 1) but2 += 0x04;//LB if(item[28].duration0 == 1) but2 += 0x20;//START/OPTIONS/+ if(but2 == 0x22) but2 += 0x10;//Select = Z + Start //LEFT STICK X for(int x = 8; x > -1; x--) { if(item[x+41].duration0 == 1) { lx += pow(2, 8-x-1); } } //LEFT STICK Y for(int x = 8; x > -1; x--) { if(item[x+49].duration0 == 1) { ly += pow(2, 8-x-1); } } //C STICK X for(int x = 8; x > -1; x--) { if(item[x+57].duration0 == 1) { cx += pow(2, 8-x-1); } } //C STICK Y for(int x = 8; x > -1; x--) { if(item[x+65].duration0 == 1) { cy += pow(2, 8-x-1); } } //R AN for(int x = 8; x > -1; x--) { if(item[x+73].duration0 == 1) { rt += pow(2, 8-x-1); } } //L AN for(int x = 8; x > -1; x--) { if(item[x+81].duration0 == 1) { lt += pow(2, 8-x-1); } } but1_send = but1 + dpad; but2_send = but2; lx_send = lx + lxcalib; ly_send = ly + lycalib; cx_send = cx + cxcalib; cy_send = cy + cycalib; lt_send = lt; rt_send = rt; }else{ //log_info("read fail"); } } } static void packet_handler(uint8_t packet_type, uint16_t channel, uint8_t * packet, uint16_t packet_size){ UNUSED(channel); UNUSED(packet_size); switch (packet_type){ case HCI_EVENT_PACKET: switch (packet[0]){ case HCI_EVENT_HID_META: switch (hci_event_hid_meta_get_subevent_code(packet)){ case HID_SUBEVENT_CONNECTION_OPENED: if (hid_subevent_connection_opened_get_status(packet)) return; hid_cid = hid_subevent_connection_opened_get_hid_cid(packet); hid_device_request_can_send_now_event(hid_cid); //start loop log_info("HID Connected"); break; case HID_SUBEVENT_CONNECTION_CLOSED: log_info("HID Disconnected"); hid_cid = 0; break; case HID_SUBEVENT_CAN_SEND_NOW: send_report[4] = lx_send; send_report[5] = (0xff - ly_send); send_report[6] = cx_send; send_report[7] = (0xff - cy_send); send_report[8] = but1_send; send_report[9] = but2_send; send_report[11] = lt_send; send_report[12] = rt_send; hid_device_send_interrupt_message(hid_cid, &send_report[0], sizeof(send_report)); hid_device_request_can_send_now_event(hid_cid); break; default: break; } break; default: break; } break; default: break; } } /* Main */ int btstack_main(int argc, const char * argv[]); int btstack_main(int argc, const char * argv[]){ (void)argc; (void)argv; //RMT init rmt_tx_init(); rmt_rx_init(); //format button report from controller xTaskCreate(get_buttons, "get_buttons", 2048, NULL, 1, NULL); // Wait for stick calibration vTaskDelay(200); hci_event_callback_registration.callback = &packet_handler; hci_add_event_handler(&hci_event_callback_registration); hci_register_sco_packet_handler(&packet_handler); gap_discoverable_control(1); gap_set_class_of_device(0x2508); gap_set_local_name("Wireless Controller"); l2cap_init(); sdp_init(); memset(hid_service_buffer, 0, sizeof(hid_service_buffer)); hid_create_sdp_record(hid_service_buffer, 0x10001, 0x2508, 33, 0, 0, 0, hid_descriptor_gamecube, sizeof(hid_descriptor_gamecube), hid_device_name); sdp_register_service(hid_service_buffer); device_id_create_sdp_record(device_id_sdp_service_buffer, 0x10003, DEVICE_ID_VENDOR_ID_SOURCE_BLUETOOTH, BLUETOOTH_COMPANY_ID_BLUEKITCHEN_GMBH, 1, 1); sdp_register_service(device_id_sdp_service_buffer); hid_device_init(1, sizeof(hid_descriptor_gamecube), hid_descriptor_gamecube); hid_device_register_packet_handler(&packet_handler); hci_power_control(HCI_POWER_ON); return 0; } ================================================ FILE: Firmware/BlueCubeMod/main/component.mk ================================================ # # Main component makefile. # # This Makefile can be left empty. By default, it 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 ESP-IDF documents if you need to do this. # CFLAGS += -Wno-format ================================================ FILE: Firmware/BlueCubeMod/sdkconfig ================================================ # # Automatically generated file. DO NOT EDIT. # Espressif IoT Development Framework (ESP-IDF) Project Configuration # CONFIG_IDF_TARGET="esp32" # # SDK tool configuration # CONFIG_SDK_TOOLPREFIX="xtensa-esp32-elf-" CONFIG_SDK_PYTHON="python" CONFIG_SDK_MAKE_WARN_UNDEFINED_VARIABLES=y CONFIG_APP_COMPILE_TIME_DATE=y # CONFIG_APP_EXCLUDE_PROJECT_VER_VAR is not set # CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR is not set # CONFIG_LOG_BOOTLOADER_LEVEL_NONE is not set # CONFIG_LOG_BOOTLOADER_LEVEL_ERROR is not set CONFIG_LOG_BOOTLOADER_LEVEL_WARN=y # CONFIG_LOG_BOOTLOADER_LEVEL_INFO is not set # CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG is not set # CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE is not set CONFIG_LOG_BOOTLOADER_LEVEL=2 # CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_8V is not set CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V=y # CONFIG_BOOTLOADER_FACTORY_RESET is not set # CONFIG_BOOTLOADER_APP_TEST is not set CONFIG_BOOTLOADER_WDT_ENABLE=y # CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE is not set CONFIG_BOOTLOADER_WDT_TIME_MS=9000 # CONFIG_APP_ROLLBACK_ENABLE is not set # CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT is not set # CONFIG_SECURE_BOOT_ENABLED is not set # CONFIG_FLASH_ENCRYPTION_ENABLED is not set CONFIG_ESPTOOLPY_PORT="/dev/cu.usbserial-DO01EXOV" # CONFIG_ESPTOOLPY_BAUD_115200B is not set # CONFIG_ESPTOOLPY_BAUD_230400B is not set CONFIG_ESPTOOLPY_BAUD_921600B=y # CONFIG_ESPTOOLPY_BAUD_2MB is not set # CONFIG_ESPTOOLPY_BAUD_OTHER is not set CONFIG_ESPTOOLPY_BAUD_OTHER_VAL=115200 CONFIG_ESPTOOLPY_BAUD=921600 # CONFIG_ESPTOOLPY_COMPRESSED is not set # CONFIG_FLASHMODE_QIO is not set # CONFIG_FLASHMODE_QOUT is not set CONFIG_FLASHMODE_DIO=y # CONFIG_FLASHMODE_DOUT is not set CONFIG_ESPTOOLPY_FLASHMODE="dio" # CONFIG_ESPTOOLPY_FLASHFREQ_80M is not set CONFIG_ESPTOOLPY_FLASHFREQ_40M=y # CONFIG_ESPTOOLPY_FLASHFREQ_26M is not set # CONFIG_ESPTOOLPY_FLASHFREQ_20M is not set CONFIG_ESPTOOLPY_FLASHFREQ="40m" # CONFIG_ESPTOOLPY_FLASHSIZE_1MB is not set # CONFIG_ESPTOOLPY_FLASHSIZE_2MB is not set CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y # CONFIG_ESPTOOLPY_FLASHSIZE_8MB is not set # CONFIG_ESPTOOLPY_FLASHSIZE_16MB is not set CONFIG_ESPTOOLPY_FLASHSIZE="4MB" CONFIG_ESPTOOLPY_FLASHSIZE_DETECT=y CONFIG_ESPTOOLPY_BEFORE_RESET=y # CONFIG_ESPTOOLPY_BEFORE_NORESET is not set CONFIG_ESPTOOLPY_BEFORE="default_reset" CONFIG_ESPTOOLPY_AFTER_RESET=y # CONFIG_ESPTOOLPY_AFTER_NORESET is not set CONFIG_ESPTOOLPY_AFTER="hard_reset" # CONFIG_MONITOR_BAUD_9600B is not set # CONFIG_MONITOR_BAUD_57600B is not set CONFIG_MONITOR_BAUD_115200B=y # CONFIG_MONITOR_BAUD_230400B is not set # CONFIG_MONITOR_BAUD_921600B is not set # CONFIG_MONITOR_BAUD_2MB is not set # CONFIG_MONITOR_BAUD_OTHER is not set CONFIG_MONITOR_BAUD_OTHER_VAL=115200 CONFIG_MONITOR_BAUD=115200 CONFIG_PARTITION_TABLE_SINGLE_APP=y # CONFIG_PARTITION_TABLE_TWO_OTA is not set # CONFIG_PARTITION_TABLE_CUSTOM is not set CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv" CONFIG_PARTITION_TABLE_FILENAME="partitions_singleapp.csv" CONFIG_PARTITION_TABLE_OFFSET=0x8000 CONFIG_PARTITION_TABLE_MD5=y CONFIG_OPTIMIZATION_LEVEL_DEBUG=y # CONFIG_OPTIMIZATION_LEVEL_RELEASE is not set CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED=y # CONFIG_OPTIMIZATION_ASSERTIONS_SILENT is not set # CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED is not set # CONFIG_CXX_EXCEPTIONS is not set CONFIG_STACK_CHECK_NONE=y # CONFIG_STACK_CHECK_NORM is not set # CONFIG_STACK_CHECK_STRONG is not set # CONFIG_STACK_CHECK_ALL is not set # CONFIG_STACK_CHECK is not set # CONFIG_WARN_WRITE_STRINGS is not set # CONFIG_DISABLE_GCC8_WARNINGS is not set # CONFIG_ESP32_APPTRACE_DEST_TRAX is not set CONFIG_ESP32_APPTRACE_DEST_NONE=y # CONFIG_ESP32_APPTRACE_ENABLE is not set CONFIG_ESP32_APPTRACE_LOCK_ENABLE=y CONFIG_BT_ENABLED=y # CONFIG_BTDM_CONTROLLER_MODE_BLE_ONLY is not set # CONFIG_BTDM_CONTROLLER_MODE_BR_EDR_ONLY is not set CONFIG_BTDM_CONTROLLER_MODE_BTDM=y CONFIG_BTDM_CONTROLLER_BLE_MAX_CONN=3 CONFIG_BTDM_CONTROLLER_BR_EDR_MAX_ACL_CONN=2 CONFIG_BTDM_CONTROLLER_BR_EDR_MAX_SYNC_CONN=0 CONFIG_BTDM_CONTROLLER_BLE_MAX_CONN_EFF=3 CONFIG_BTDM_CONTROLLER_BR_EDR_MAX_ACL_CONN_EFF=2 CONFIG_BTDM_CONTROLLER_BR_EDR_MAX_SYNC_CONN_EFF=0 CONFIG_BTDM_CONTROLLER_PINNED_TO_CORE_0=y # CONFIG_BTDM_CONTROLLER_PINNED_TO_CORE_1 is not set CONFIG_BTDM_CONTROLLER_PINNED_TO_CORE=0 CONFIG_BTDM_CONTROLLER_HCI_MODE_VHCI=y # CONFIG_BTDM_CONTROLLER_HCI_MODE_UART_H4 is not set # CONFIG_BTDM_CONTROLLER_MODEM_SLEEP is not set CONFIG_BLE_SCAN_DUPLICATE=y CONFIG_SCAN_DUPLICATE_BY_DEVICE_ADDR=y # CONFIG_SCAN_DUPLICATE_BY_ADV_DATA is not set # CONFIG_SCAN_DUPLICATE_BY_ADV_DATA_AND_DEVICE_ADDR is not set CONFIG_SCAN_DUPLICATE_TYPE=0 CONFIG_DUPLICATE_SCAN_CACHE_SIZE=20 # CONFIG_BLE_MESH_SCAN_DUPLICATE_EN is not set CONFIG_BLE_ADV_REPORT_FLOW_CONTROL_SUPPORTED=y CONFIG_BLE_ADV_REPORT_FLOW_CONTROL_NUM=100 CONFIG_BLE_ADV_REPORT_DISCARD_THRSHOLD=20 # CONFIG_BLUEDROID_ENABLED is not set CONFIG_BT_RESERVE_DRAM=0xdb5c # CONFIG_ADC_FORCE_XPD_FSM is not set CONFIG_ADC2_DISABLE_DAC=y # CONFIG_SPI_MASTER_IN_IRAM is not set CONFIG_SPI_MASTER_ISR_IN_IRAM=y # CONFIG_SPI_SLAVE_IN_IRAM is not set CONFIG_SPI_SLAVE_ISR_IN_IRAM=y # CONFIG_EFUSE_CUSTOM_TABLE is not set # CONFIG_EFUSE_VIRTUAL is not set # CONFIG_EFUSE_CODE_SCHEME_COMPAT_NONE is not set CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4=y # CONFIG_EFUSE_CODE_SCHEME_COMPAT_REPEAT is not set CONFIG_EFUSE_MAX_BLK_LEN=192 CONFIG_IDF_TARGET_ESP32=y # CONFIG_ESP32_DEFAULT_CPU_FREQ_80 is not set CONFIG_ESP32_DEFAULT_CPU_FREQ_160=y # CONFIG_ESP32_DEFAULT_CPU_FREQ_240 is not set CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ=160 # CONFIG_SPIRAM_SUPPORT is not set # CONFIG_MEMMAP_TRACEMEM is not set # CONFIG_MEMMAP_TRACEMEM_TWOBANKS is not set # CONFIG_ESP32_TRAX is not set CONFIG_TRACEMEM_RESERVE_DRAM=0x0 # CONFIG_TWO_UNIVERSAL_MAC_ADDRESS is not set CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS=y CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS=4 CONFIG_SYSTEM_EVENT_QUEUE_SIZE=32 CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE=2048 CONFIG_MAIN_TASK_STACK_SIZE=4096 CONFIG_IPC_TASK_STACK_SIZE=1024 CONFIG_TIMER_TASK_STACK_SIZE=4096 CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF=y # CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF is not set # CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR is not set # CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF is not set # CONFIG_NEWLIB_STDIN_LINE_ENDING_LF is not set CONFIG_NEWLIB_STDIN_LINE_ENDING_CR=y # CONFIG_NEWLIB_NANO_FORMAT is not set CONFIG_CONSOLE_UART_DEFAULT=y # CONFIG_CONSOLE_UART_CUSTOM is not set # CONFIG_CONSOLE_UART_NONE is not set CONFIG_CONSOLE_UART_NUM=0 CONFIG_CONSOLE_UART_BAUDRATE=115200 # CONFIG_ULP_COPROC_ENABLED is not set CONFIG_ULP_COPROC_RESERVE_MEM=0 CONFIG_ESP32_PANIC_PRINT_HALT=y # CONFIG_ESP32_PANIC_PRINT_REBOOT is not set # CONFIG_ESP32_PANIC_SILENT_REBOOT is not set # CONFIG_ESP32_PANIC_GDBSTUB is not set CONFIG_ESP32_DEBUG_OCDAWARE=y CONFIG_ESP32_DEBUG_STUBS_ENABLE=y # CONFIG_INT_WDT is not set # CONFIG_TASK_WDT is not set CONFIG_BROWNOUT_DET=y CONFIG_BROWNOUT_DET_LVL_SEL_0=y # CONFIG_BROWNOUT_DET_LVL_SEL_1 is not set # CONFIG_BROWNOUT_DET_LVL_SEL_2 is not set # CONFIG_BROWNOUT_DET_LVL_SEL_3 is not set # CONFIG_BROWNOUT_DET_LVL_SEL_4 is not set # CONFIG_BROWNOUT_DET_LVL_SEL_5 is not set # CONFIG_BROWNOUT_DET_LVL_SEL_6 is not set # CONFIG_BROWNOUT_DET_LVL_SEL_7 is not set CONFIG_BROWNOUT_DET_LVL=0 CONFIG_REDUCE_PHY_TX_POWER=y CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1=y # CONFIG_ESP32_TIME_SYSCALL_USE_RTC is not set # CONFIG_ESP32_TIME_SYSCALL_USE_FRC1 is not set # CONFIG_ESP32_TIME_SYSCALL_USE_NONE is not set CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC=y # CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL is not set # CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_OSC is not set # CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_8MD256 is not set CONFIG_ESP32_RTC_CLK_CAL_CYCLES=1024 CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY=0 # CONFIG_ESP32_XTAL_FREQ_40 is not set # CONFIG_ESP32_XTAL_FREQ_26 is not set CONFIG_ESP32_XTAL_FREQ_AUTO=y CONFIG_ESP32_XTAL_FREQ=0 # CONFIG_DISABLE_BASIC_ROM_CONSOLE is not set # CONFIG_ESP_TIMER_PROFILING is not set # CONFIG_COMPATIBLE_PRE_V2_1_BOOTLOADERS is not set CONFIG_ESP_ERR_TO_NAME_LOOKUP=y # CONFIG_PM_ENABLE is not set CONFIG_ADC_CAL_EFUSE_TP_ENABLE=y CONFIG_ADC_CAL_EFUSE_VREF_ENABLE=y CONFIG_ADC_CAL_LUT_ENABLE=y # CONFIG_EVENT_LOOP_PROFILING is not set CONFIG_POST_EVENTS_FROM_ISR=y CONFIG_POST_EVENTS_FROM_IRAM_ISR=y CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS=y CONFIG_HTTPD_MAX_REQ_HDR_LEN=512 CONFIG_HTTPD_MAX_URI_LEN=512 CONFIG_HTTPD_ERR_RESP_NO_DELAY=y # CONFIG_OTA_ALLOW_HTTP is not set # CONFIG_SW_COEXIST_ENABLE is not set CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM=10 CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM=32 # CONFIG_ESP32_WIFI_STATIC_TX_BUFFER is not set CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER=y CONFIG_ESP32_WIFI_TX_BUFFER_TYPE=1 CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM=32 # CONFIG_ESP32_WIFI_CSI_ENABLED is not set CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED=y CONFIG_ESP32_WIFI_TX_BA_WIN=6 CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y CONFIG_ESP32_WIFI_RX_BA_WIN=6 CONFIG_ESP32_WIFI_NVS_ENABLED=y CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0=y # CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1 is not set CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN=752 CONFIG_ESP32_WIFI_MGMT_SBUF_NUM=32 # CONFIG_ESP32_WIFI_DEBUG_LOG_ENABLE is not set CONFIG_ESP32_WIFI_IRAM_OPT=y CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE=y # CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION is not set CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER=20 CONFIG_ESP32_PHY_MAX_TX_POWER=20 # CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH is not set CONFIG_ESP32_ENABLE_COREDUMP_TO_UART=y # CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE is not set CONFIG_ESP32_ENABLE_COREDUMP=y CONFIG_ESP32_CORE_DUMP_MAX_TASKS_NUM=64 CONFIG_ESP32_CORE_DUMP_UART_DELAY=0 CONFIG_DMA_RX_BUF_NUM=10 CONFIG_DMA_TX_BUF_NUM=10 # CONFIG_EMAC_L2_TO_L3_RX_BUF_MODE is not set CONFIG_EMAC_CHECK_LINK_PERIOD_MS=2000 CONFIG_EMAC_TASK_PRIORITY=20 CONFIG_EMAC_TASK_STACK_SIZE=3072 # CONFIG_FATFS_CODEPAGE_DYNAMIC is not set CONFIG_FATFS_CODEPAGE_437=y # CONFIG_FATFS_CODEPAGE_720 is not set # CONFIG_FATFS_CODEPAGE_737 is not set # CONFIG_FATFS_CODEPAGE_771 is not set # CONFIG_FATFS_CODEPAGE_775 is not set # CONFIG_FATFS_CODEPAGE_850 is not set # CONFIG_FATFS_CODEPAGE_852 is not set # CONFIG_FATFS_CODEPAGE_855 is not set # CONFIG_FATFS_CODEPAGE_857 is not set # CONFIG_FATFS_CODEPAGE_860 is not set # CONFIG_FATFS_CODEPAGE_861 is not set # CONFIG_FATFS_CODEPAGE_862 is not set # CONFIG_FATFS_CODEPAGE_863 is not set # CONFIG_FATFS_CODEPAGE_864 is not set # CONFIG_FATFS_CODEPAGE_865 is not set # CONFIG_FATFS_CODEPAGE_866 is not set # CONFIG_FATFS_CODEPAGE_869 is not set # CONFIG_FATFS_CODEPAGE_932 is not set # CONFIG_FATFS_CODEPAGE_936 is not set # CONFIG_FATFS_CODEPAGE_949 is not set # CONFIG_FATFS_CODEPAGE_950 is not set CONFIG_FATFS_CODEPAGE=437 CONFIG_FATFS_LFN_NONE=y # CONFIG_FATFS_LFN_HEAP is not set # CONFIG_FATFS_LFN_STACK is not set CONFIG_FATFS_FS_LOCK=0 CONFIG_FATFS_TIMEOUT_MS=10000 CONFIG_FATFS_PER_FILE_CACHE=y CONFIG_MB_MASTER_TIMEOUT_MS_RESPOND=150 CONFIG_MB_MASTER_DELAY_MS_CONVERT=200 CONFIG_MB_QUEUE_LENGTH=20 CONFIG_MB_SERIAL_TASK_STACK_SIZE=2048 CONFIG_MB_SERIAL_BUF_SIZE=256 CONFIG_MB_SERIAL_TASK_PRIO=10 # CONFIG_MB_CONTROLLER_SLAVE_ID_SUPPORT is not set CONFIG_MB_CONTROLLER_NOTIFY_TIMEOUT=20 CONFIG_MB_CONTROLLER_NOTIFY_QUEUE_SIZE=20 CONFIG_MB_CONTROLLER_STACK_SIZE=4096 CONFIG_MB_EVENT_QUEUE_TIMEOUT=20 CONFIG_MB_TIMER_PORT_ENABLED=y CONFIG_MB_TIMER_GROUP=0 CONFIG_MB_TIMER_INDEX=0 # CONFIG_FREERTOS_UNICORE is not set CONFIG_FREERTOS_NO_AFFINITY=0x7FFFFFFF CONFIG_FREERTOS_CORETIMER_0=y # CONFIG_FREERTOS_CORETIMER_1 is not set CONFIG_FREERTOS_HZ=1000 # CONFIG_FREERTOS_ASSERT_ON_UNTESTED_FUNCTION is not set # CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE is not set # CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL is not set CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY=y # CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK is not set CONFIG_FREERTOS_INTERRUPT_BACKTRACE=y CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS=3 CONFIG_FREERTOS_ASSERT_FAIL_ABORT=y # CONFIG_FREERTOS_ASSERT_FAIL_PRINT_CONTINUE is not set # CONFIG_FREERTOS_ASSERT_DISABLE is not set CONFIG_FREERTOS_IDLE_TASK_STACKSIZE=1024 CONFIG_FREERTOS_ISR_STACKSIZE=1536 # CONFIG_FREERTOS_LEGACY_HOOKS is not set CONFIG_FREERTOS_MAX_TASK_NAME_LEN=16 CONFIG_SUPPORT_STATIC_ALLOCATION=y # CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK is not set CONFIG_TIMER_TASK_PRIORITY=4 CONFIG_TIMER_TASK_STACK_DEPTH=2048 CONFIG_TIMER_QUEUE_LENGTH=10 CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE=0 # CONFIG_FREERTOS_USE_TRACE_FACILITY is not set # CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS is not set # CONFIG_FREERTOS_DEBUG_INTERNALS is not set CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER=y CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER=y CONFIG_HEAP_POISONING_DISABLED=y # CONFIG_HEAP_POISONING_LIGHT is not set # CONFIG_HEAP_POISONING_COMPREHENSIVE is not set CONFIG_HEAP_TRACING_OFF=y # CONFIG_HEAP_TRACING_STANDALONE is not set # CONFIG_HEAP_TRACING_TOHOST is not set # CONFIG_HEAP_TRACING is not set # CONFIG_LOG_DEFAULT_LEVEL_NONE is not set CONFIG_LOG_DEFAULT_LEVEL_ERROR=y # CONFIG_LOG_DEFAULT_LEVEL_WARN is not set # CONFIG_LOG_DEFAULT_LEVEL_INFO is not set # CONFIG_LOG_DEFAULT_LEVEL_DEBUG is not set # CONFIG_LOG_DEFAULT_LEVEL_VERBOSE is not set CONFIG_LOG_DEFAULT_LEVEL=1 CONFIG_LOG_COLORS=y # CONFIG_L2_TO_L3_COPY is not set # CONFIG_LWIP_IRAM_OPTIMIZATION is not set CONFIG_LWIP_MAX_SOCKETS=4 # CONFIG_USE_ONLY_LWIP_SELECT is not set # CONFIG_LWIP_SO_REUSE is not set # CONFIG_LWIP_SO_RCVBUF is not set CONFIG_LWIP_DHCP_MAX_NTP_SERVERS=1 # CONFIG_LWIP_IP_FRAG is not set # CONFIG_LWIP_IP_REASSEMBLY is not set # CONFIG_LWIP_STATS is not set CONFIG_LWIP_ETHARP_TRUST_IP_MAC=y CONFIG_ESP_GRATUITOUS_ARP=y CONFIG_GARP_TMR_INTERVAL=60 CONFIG_TCPIP_RECVMBOX_SIZE=32 # CONFIG_LWIP_DHCP_DOES_ARP_CHECK is not set # CONFIG_LWIP_DHCP_RESTORE_LAST_IP is not set CONFIG_LWIP_DHCPS_LEASE_UNIT=60 CONFIG_LWIP_DHCPS_MAX_STATION_NUM=8 # CONFIG_LWIP_AUTOIP is not set CONFIG_LWIP_NETIF_LOOPBACK=y CONFIG_LWIP_LOOPBACK_MAX_PBUFS=8 CONFIG_LWIP_MAX_ACTIVE_TCP=16 CONFIG_LWIP_MAX_LISTENING_TCP=16 CONFIG_TCP_MAXRTX=12 CONFIG_TCP_SYNMAXRTX=6 CONFIG_TCP_MSS=1436 CONFIG_TCP_MSL=60000 CONFIG_TCP_SND_BUF_DEFAULT=5744 CONFIG_TCP_WND_DEFAULT=5744 CONFIG_TCP_RECVMBOX_SIZE=6 CONFIG_TCP_QUEUE_OOSEQ=y # CONFIG_ESP_TCP_KEEP_CONNECTION_WHEN_IP_CHANGES is not set CONFIG_TCP_OVERSIZE_MSS=y # CONFIG_TCP_OVERSIZE_QUARTER_MSS is not set # CONFIG_TCP_OVERSIZE_DISABLE is not set CONFIG_LWIP_MAX_UDP_PCBS=16 CONFIG_UDP_RECVMBOX_SIZE=6 CONFIG_TCPIP_TASK_STACK_SIZE=2560 CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY=y # CONFIG_TCPIP_TASK_AFFINITY_CPU0 is not set # CONFIG_TCPIP_TASK_AFFINITY_CPU1 is not set CONFIG_TCPIP_TASK_AFFINITY=0x7FFFFFFF # CONFIG_PPP_SUPPORT is not set # CONFIG_LWIP_MULTICAST_PING is not set # CONFIG_LWIP_BROADCAST_PING is not set CONFIG_LWIP_MAX_RAW_PCBS=16 CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC=y # CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC is not set # CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC is not set CONFIG_MBEDTLS_SSL_MAX_CONTENT_LEN=16384 # CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN is not set # CONFIG_MBEDTLS_DEBUG is not set CONFIG_MBEDTLS_HARDWARE_AES=y CONFIG_MBEDTLS_HARDWARE_MPI=y CONFIG_MBEDTLS_MPI_USE_INTERRUPT=y CONFIG_MBEDTLS_HARDWARE_SHA=y CONFIG_MBEDTLS_HAVE_TIME=y # CONFIG_MBEDTLS_HAVE_TIME_DATE is not set CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT=y # CONFIG_MBEDTLS_TLS_SERVER_ONLY is not set # CONFIG_MBEDTLS_TLS_CLIENT_ONLY is not set # CONFIG_MBEDTLS_TLS_DISABLED is not set CONFIG_MBEDTLS_TLS_SERVER=y CONFIG_MBEDTLS_TLS_CLIENT=y CONFIG_MBEDTLS_TLS_ENABLED=y # CONFIG_MBEDTLS_PSK_MODES is not set CONFIG_MBEDTLS_KEY_EXCHANGE_RSA=y CONFIG_MBEDTLS_KEY_EXCHANGE_DHE_RSA=y CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE=y CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA=y CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA=y CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA=y CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA=y CONFIG_MBEDTLS_SSL_RENEGOTIATION=y # CONFIG_MBEDTLS_SSL_PROTO_SSL3 is not set CONFIG_MBEDTLS_SSL_PROTO_TLS1=y CONFIG_MBEDTLS_SSL_PROTO_TLS1_1=y CONFIG_MBEDTLS_SSL_PROTO_TLS1_2=y # CONFIG_MBEDTLS_SSL_PROTO_DTLS is not set CONFIG_MBEDTLS_SSL_ALPN=y CONFIG_MBEDTLS_SSL_SESSION_TICKETS=y CONFIG_MBEDTLS_AES_C=y # CONFIG_MBEDTLS_CAMELLIA_C is not set # CONFIG_MBEDTLS_DES_C is not set CONFIG_MBEDTLS_RC4_DISABLED=y # CONFIG_MBEDTLS_RC4_ENABLED_NO_DEFAULT is not set # CONFIG_MBEDTLS_RC4_ENABLED is not set # CONFIG_MBEDTLS_BLOWFISH_C is not set # CONFIG_MBEDTLS_XTEA_C is not set CONFIG_MBEDTLS_CCM_C=y CONFIG_MBEDTLS_GCM_C=y # CONFIG_MBEDTLS_RIPEMD160_C is not set CONFIG_MBEDTLS_PEM_PARSE_C=y CONFIG_MBEDTLS_PEM_WRITE_C=y CONFIG_MBEDTLS_X509_CRL_PARSE_C=y CONFIG_MBEDTLS_X509_CSR_PARSE_C=y CONFIG_MBEDTLS_ECP_C=y CONFIG_MBEDTLS_ECDH_C=y CONFIG_MBEDTLS_ECDSA_C=y CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED=y CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED=y CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED=y CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED=y CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED=y CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED=y CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED=y CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED=y CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED=y CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED=y CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED=y CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED=y CONFIG_MBEDTLS_ECP_NIST_OPTIM=y CONFIG_MDNS_MAX_SERVICES=10 CONFIG_MQTT_PROTOCOL_311=y CONFIG_MQTT_TRANSPORT_SSL=y CONFIG_MQTT_TRANSPORT_WEBSOCKET=y CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE=y # CONFIG_MQTT_USE_CUSTOM_CONFIG is not set # CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED is not set # CONFIG_MQTT_CUSTOM_OUTBOX is not set # CONFIG_OPENSSL_DEBUG is not set CONFIG_OPENSSL_ASSERT_DO_NOTHING=y # CONFIG_OPENSSL_ASSERT_EXIT is not set CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT=5 CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT=2048 CONFIG_PTHREAD_STACK_MIN=768 CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY=y # CONFIG_ESP32_DEFAULT_PTHREAD_CORE_0 is not set # CONFIG_ESP32_DEFAULT_PTHREAD_CORE_1 is not set CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT=-1 CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT="pthread" # CONFIG_SPI_FLASH_VERIFY_WRITE is not set # CONFIG_SPI_FLASH_ENABLE_COUNTERS is not set CONFIG_SPI_FLASH_ROM_DRIVER_PATCH=y CONFIG_SPIFFS_MAX_PARTITIONS=3 CONFIG_SPIFFS_CACHE=y CONFIG_SPIFFS_CACHE_WR=y # CONFIG_SPIFFS_CACHE_STATS is not set CONFIG_SPIFFS_PAGE_CHECK=y CONFIG_SPIFFS_GC_MAX_RUNS=10 # CONFIG_SPIFFS_GC_STATS is not set CONFIG_SPIFFS_PAGE_SIZE=256 CONFIG_SPIFFS_OBJ_NAME_LEN=32 CONFIG_SPIFFS_USE_MAGIC=y CONFIG_SPIFFS_USE_MAGIC_LENGTH=y CONFIG_SPIFFS_META_LENGTH=4 CONFIG_SPIFFS_USE_MTIME=y # CONFIG_SPIFFS_DBG is not set # CONFIG_SPIFFS_API_DBG is not set # CONFIG_SPIFFS_GC_DBG is not set # CONFIG_SPIFFS_CACHE_DBG is not set # CONFIG_SPIFFS_CHECK_DBG is not set # CONFIG_SPIFFS_TEST_VISUALISATION is not set CONFIG_IP_LOST_TIMER_INTERVAL=120 CONFIG_TCPIP_LWIP=y CONFIG_UNITY_ENABLE_FLOAT=y CONFIG_UNITY_ENABLE_DOUBLE=y # CONFIG_UNITY_ENABLE_COLOR is not set CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER=y # CONFIG_UNITY_ENABLE_FIXTURE is not set CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT=y CONFIG_SUPPORT_TERMIOS=y CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS=1 CONFIG_SEMIHOSTFS_HOST_PATH_MAX_LEN=128 # CONFIG_WL_SECTOR_SIZE_512 is not set CONFIG_WL_SECTOR_SIZE_4096=y CONFIG_WL_SECTOR_SIZE=4096 # CONFIG_LEGACY_INCLUDE_COMMON_HEADERS is not set # Deprecated options for backward compatibility CONFIG_TOOLPREFIX="xtensa-esp32-elf-" CONFIG_PYTHON="python" CONFIG_MAKE_WARN_UNDEFINED_VARIABLES=y # End of deprecated options ================================================ FILE: Firmware/BlueCubeMod/set_port.sh ================================================ #!/bin/sh PORT=$1 sed -i "/CONFIG_ESPTOOLPY_PORT/c\CONFIG_ESPTOOLPY_PORT=\"$PORT\"" sdkconfig ================================================ FILE: Firmware/BlueCubeModv2/CMakeLists.txt ================================================ # 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) project(BlueCubeModv2) ================================================ FILE: Firmware/BlueCubeModv2/Makefile ================================================ # # This is a project Makefile. It is assumed the directory this Makefile resides in is a # project subdirectory. # PROJECT_NAME := BlueCubeModv2 include $(IDF_PATH)/make/project.mk ================================================ FILE: Firmware/BlueCubeModv2/README.md ================================================ # BlueCubeMod ESP32 based GameCube Controller Bluetooth conversion for Nintendo Switch v1: Mac/PC/PS4 supported (tested using Dolphin Emulator on Mac, for Switch/RaspberryPi, use an 8Bitdo USB adapter) v2: Switch support only - no adapter required ## Wiring: - Connect pins 23 and 18 to GameCube controller's data pin (Red) - Connect GND to controller's ground pin (Black) ![alt text](../../Modding%20Resources/GameCube%20Controller%20Pinout%20SideView.jpg?raw=true) ![alt text](../../Modding%20Resources/GameCube%20Controller%20Pinout%20TopView.png?raw=true) ## Build instructions(v2): - Use this esp-idf fork here: https://github.com/NathanReeves/esp-idf - Set up the esp-idf environment: https://docs.espressif.com/projects/esp-idf/en/latest/get-started/ - Get the BlueCubeModv2 firmware - If you haven’t flashed an ESP32 project before, you need the port name of ESP32 for the config file. If using unix system, to get the port name of a USB device run: `ls /dev` - Find your device on the list and copy it. It should look something like: /dev/cu.usbserial-DO01EXOV or /dev/cu.SLAB_USBtoUART - cd into project folder and run: `make menuconfig` - Paste your port name into Serial Flasher Config -> Default Serial Port - Compile and flash the program, run: `make flash monitor` Resources used: http://www.int03.co.uk/crema/hardware/gamecube/gc-control.htm https://github.com/dekuNukem/Nintendo_Switch_Reverse_Engineering https://github.com/timmeh87/switchnotes Thank you to [@Molorius]( https://github.com/Molorius ) for implementing the bluedroid Classic stack for esp ================================================ FILE: Firmware/BlueCubeModv2/main/CMakeLists.txt ================================================ idf_component_register(SRCS "main.c" INCLUDE_DIRS "") ================================================ FILE: Firmware/BlueCubeModv2/main/component.mk ================================================ # # "main" pseudo-component makefile. # # (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.) ================================================ FILE: Firmware/BlueCubeModv2/main/main.c ================================================ // // BlueCubeMod Firmware // // // Created by Nathan Reeves 2019 // #include #include "sdkconfig.h" #include "esp_spi_flash.h" #include "esp_log.h" #include "esp_hidd_api.h" #include "esp_bt_main.h" #include "esp_bt_device.h" #include "esp_bt.h" #include "esp_err.h" #include "esp_system.h" #include "nvs.h" #include "nvs_flash.h" #include "esp_gap_bt_api.h" #include #include #include #include "esp_timer.h" #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "freertos/semphr.h" #include "driver/gpio.h" #include "driver/rmt.h" #include "driver/periph_ctrl.h" #include "soc/rmt_reg.h" #define LED_GPIO 25 #define PIN_SEL (1ULL<controller command: 0100 0000 0000 0011 0000 0010 items[0].duration0 = 3; items[0].level0 = 0; items[0].duration1 = 1; items[0].level1 = 1; items[1].duration0 = 1; items[1].level0 = 0; items[1].duration1 = 3; items[1].level1 = 1; int j; for(j = 0; j < 12; j++) { items[j+2].duration0 = 3; items[j+2].level0 = 0; items[j+2].duration1 = 1; items[j+2].level1 = 1; } items[14].duration0 = 1; items[14].level0 = 0; items[14].duration1 = 3; items[14].level1 = 1; items[15].duration0 = 1; items[15].level0 = 0; items[15].duration1 = 3; items[15].level1 = 1; for(j = 0; j < 8; j++) { items[j+16].duration0 = 3; items[j+16].level0 = 0; items[j+16].duration1 = 1; items[j+16].level1 = 1; } items[24].duration0 = 1; items[24].level0 = 0; items[24].duration1 = 3; items[24].level1 = 1; } //RMT Receiver Init rmt_config_t rmt_rx; static void rmt_rx_init() { rmt_rx.channel = RMT_RX_CHANNEL; rmt_rx.gpio_num = RMT_RX_GPIO_NUM; rmt_rx.clk_div = RMT_CLK_DIV; rmt_rx.mem_block_num = 4; rmt_rx.rmt_mode = RMT_MODE_RX; rmt_rx.rx_config.idle_threshold = rmt_item32_tIMEOUT_US / 10 * (RMT_TICK_10_US); rmt_config(&rmt_rx); } //Polls controller and formats response //GameCube Controller Protocol: http://www.int03.co.uk/crema/hardware/gamecube/gc-control.html static void get_buttons() { ESP_LOGI("hi", "Hello world from core %d!\n", xPortGetCoreID() ); //button init values uint8_t but1 = 0; uint8_t but2 = 0; uint8_t but3 = 0; uint8_t dpad = 0x08;//Released uint8_t lx = 0; uint8_t ly = 0; uint8_t cx = 0; uint8_t cy = 0; uint8_t lt = 0; uint8_t rt = 0; //Sample and find calibration value for sticks int calib_loop = 0; int xsum = 0; int ysum = 0; int cxsum = 0; int cysum = 0; int lsum = 0; int rsum = 0; while(calib_loop < 5) { lx = 0; ly = 0; cx = 0; cy = 0; lt = 0; rt = 0; rmt_write_items(rmt_tx.channel, items, 25, 0); rmt_rx_start(rmt_rx.channel, 1); vTaskDelay(10); rmt_item32_t* item = (rmt_item32_t*) (RMT_CHANNEL_MEM(rmt_rx.channel)); if(item[33].duration0 == 1 && item[27].duration0 == 1 && item[26].duration0 == 3 && item[25].duration0 == 3) { //LEFT STICK X for(int x = 8; x > -1; x--) { if((item[x+41].duration0 == 1)) { lx += pow(2, 8-x-1); } } //LEFT STICK Y for(int x = 8; x > -1; x--) { if((item[x+49].duration0 == 1)) { ly += pow(2, 8-x-1); } } //C STICK X for(int x = 8; x > -1; x--) { if((item[x+57].duration0 == 1)) { cx += pow(2, 8-x-1); } } //C STICK Y for(int x = 8; x > -1; x--) { if((item[x+65].duration0 == 1)) { cy += pow(2, 8-x-1); } } //R AN for(int x = 8; x > -1; x--) { if((item[x+73].duration0 == 1)) { rt += pow(2, 8-x-1); } } //L AN for(int x = 8; x > -1; x--) { if((item[x+81].duration0 == 1)) { lt += pow(2, 8-x-1); } } xsum += lx; ysum += ly; cxsum += cx; cysum += cy; lsum += lt; rsum += rt; calib_loop++; } } //Set Stick Calibration lxcalib = 127-(xsum/5); lycalib = 127-(ysum/5); cxcalib = 127-(cxsum/5); cycalib = 127-(cysum/5); lcalib = 127-(lsum/5); rcalib = 127-(rsum/5); while(1) { but1 = 0; but2 = 0; but3 = 0; dpad = 0x08; lx = 0; ly = 0; cx = 0; cy = 0; lt = 0; rt = 0; //Write command to controller rmt_write_items(rmt_tx.channel, items, 25, 0); rmt_rx_start(rmt_rx.channel, 1); vTaskDelay(6); //6ms between sample rmt_item32_t* item = (rmt_item32_t*) (RMT_CHANNEL_MEM(rmt_rx.channel)); //Check first 3 bits and high bit at index 33 if(item[33].duration0 == 1 && item[27].duration0 == 1 && item[26].duration0 == 3 && item[25].duration0 == 3) { //Button report: first item is item[25] //0 0 1 S Y X B A //1 L R Z U D R L //Joystick X (8bit) //Joystick Y (8bit) //C-Stick X (8bit) //C-Stick Y (8bit) //L Trigger Analog (8/4bit) //R Trigger Analog (8/4bit) if(item[32].duration0 == 1) but1 += 0x08; // A if(item[31].duration0 == 1) but1 += 0x04; // B if(item[30].duration0 == 1) but1 += 0x02; // X if(item[29].duration0 == 1) but1 += 0x01; // Y if(item[28].duration0 == 1) but2 += 0x02; // START/PLUS //DPAD if(item[40].duration0 == 1) but3 += 0x08; // L if(item[39].duration0 == 1) but3 += 0x04; // R if(item[38].duration0 == 1) but3 += 0x01; // D if(item[37].duration0 == 1) but3 += 0x02; // U if(item[35].duration0 == 1) but1 += 0x80; // ZR if(item[34].duration0 == 1) but3 += 0x80; // ZL //Buttons if(item[36].duration0 == 1) { but1 += 0x40;// Z // if(but3 == 0x80) { but3 += 0x40;} if(but2 == 0x02) { but2 = 0x01; } // Minus = Z + Start if(but3 == 0x02) { but2 = 0x10; } // Home = Z + Up } //LEFT STICK X for(int x = 8; x > -1; x--) { if(item[x+41].duration0 == 1) { lx += pow(2, 8-x-1); } } //LEFT STICK Y for(int x = 8; x > -1; x--) { if(item[x+49].duration0 == 1) { ly += pow(2, 8-x-1); } } //C STICK X for(int x = 8; x > -1; x--) { if(item[x+57].duration0 == 1) { cx += pow(2, 8-x-1); } } //C STICK Y for(int x = 8; x > -1; x--) { if(item[x+65].duration0 == 1) { cy += pow(2, 8-x-1); } } /// Analog triggers here -- Ignore for Switch :/ /* //R AN for(int x = 8; x > -1; x--) { if(item[x+73].duration0 == 1) { rt += pow(2, 8-x-1); } } //L AN for(int x = 8; x > -1; x--) { if(item[x+81].duration0 == 1) { lt += pow(2, 8-x-1); } }*/ ///// but1_send = but1; but2_send = but2; but3_send = but3; lx_send = lx + lxcalib; ly_send = ly + lycalib; cx_send = cx + cxcalib; cy_send = cy + cycalib; lt_send = 0;//lt;//left trigger analog rt_send = 0;//rt;//right trigger analog }else{ //log_info("GameCube controller read fail"); } } } //Switch button report example // batlvl Buttons Lstick Rstick //static uint8_t report30[] = {0x30, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; static uint8_t report30[] = { 0x30, 0x0, 0x80, 0,//but1 0,//but2 0,//but3 0,//Ls 0,//Ls 0,//Ls 0,//Rs 0,//Rs 0,//Rs 0x08 }; static uint8_t emptyReport[] = { 0x0, 0x0 }; void send_buttons() { // // test // if(but1_send == 0) // but1_send = 0x02; // X // else // but1_send = 0; xSemaphoreTake(xSemaphore, portMAX_DELAY); report30[1] = timer; //buttons report30[3] = but1_send; report30[4] = but2_send; report30[5] = but3_send; //encode left stick report30[6] = (lx_send << 4) & 0xF0; report30[7] = (lx_send & 0xF0) >> 4; report30[8] = ly_send; //encode right stick report30[9] = (cx_send << 4) & 0xF0; report30[10] = (cx_send & 0xF0) >> 4; report30[11] = cy_send; xSemaphoreGive(xSemaphore); timer+=1; if(timer == 255) timer = 0; if(!paired) { emptyReport[1] = timer; esp_bt_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(emptyReport), emptyReport); vTaskDelay(100); } else { esp_bt_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(report30), report30); vTaskDelay(15); } } const uint8_t hid_descriptor_gamecube[] = { 0x05, 0x01, // Usage Page (Generic Desktop Ctrls) 0x09, 0x05, // Usage (Game Pad) 0xA1, 0x01, // Collection (Application) //Padding 0x95, 0x03, // REPORT_COUNT = 3 0x75, 0x08, // REPORT_SIZE = 8 0x81, 0x03, // INPUT = Cnst,Var,Abs //Sticks 0x09, 0x30, // Usage (X) 0x09, 0x31, // Usage (Y) 0x09, 0x32, // Usage (Z) 0x09, 0x35, // Usage (Rz) 0x15, 0x00, // Logical Minimum (0) 0x26, 0xFF, 0x00, // Logical Maximum (255) 0x75, 0x08, // Report Size (8) 0x95, 0x04, // Report Count (4) 0x81, 0x02, // Input (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position) //DPAD 0x09, 0x39, // Usage (Hat switch) 0x15, 0x00, // Logical Minimum (0) 0x25, 0x07, // Logical Maximum (7) 0x35, 0x00, // Physical Minimum (0) 0x46, 0x3B, 0x01, // Physical Maximum (315) 0x65, 0x14, // Unit (System: English Rotation, Length: Centimeter) 0x75, 0x04, // Report Size (4) 0x95, 0x01, // Report Count (1) 0x81, 0x42, // Input (Data,Var,Abs,No Wrap,Linear,Preferred State,Null State) //Buttons 0x65, 0x00, // Unit (None) 0x05, 0x09, // Usage Page (Button) 0x19, 0x01, // Usage Minimum (0x01) 0x29, 0x0E, // Usage Maximum (0x0E) 0x15, 0x00, // Logical Minimum (0) 0x25, 0x01, // Logical Maximum (1) 0x75, 0x01, // Report Size (1) 0x95, 0x0E, // Report Count (14) 0x81, 0x02, // Input (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position) //Padding 0x06, 0x00, 0xFF, // Usage Page (Vendor Defined 0xFF00) 0x09, 0x20, // Usage (0x20) 0x75, 0x06, // Report Size (6) 0x95, 0x01, // Report Count (1) 0x15, 0x00, // Logical Minimum (0) 0x25, 0x7F, // Logical Maximum (127) 0x81, 0x02, // Input (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position) //Triggers 0x05, 0x01, // Usage Page (Generic Desktop Ctrls) 0x09, 0x33, // Usage (Rx) 0x09, 0x34, // Usage (Ry) 0x15, 0x00, // Logical Minimum (0) 0x26, 0xFF, 0x00, // Logical Maximum (255) 0x75, 0x08, // Report Size (8) 0x95, 0x02, // Report Count (2) 0x81, 0x02, 0xc0 }; int hid_descriptor_gc_len = sizeof(hid_descriptor_gamecube); ///Switch Replies static uint8_t reply02[] = {0x21, 0x01, 0x40, 0x00, 0x00, 0x00, 0xe6, 0x27, 0x78, 0xab, 0xd7, 0x76, 0x00, 0x82, 0x02, 0x03, 0x48, 0x03, 0x02, 0xD8, 0xA0, 0x1D, 0x40, 0x15, 0x66, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 , 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; static uint8_t reply08[] = {0x21, 0x02, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x80, 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, 0x00, 0x00, 0x00, 0x00 , 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; static uint8_t reply03[] = {0x21, 0x05, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x80, 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 }; static uint8_t reply04[] = {0x21, 0x06, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x83, 0x04, 0x00, 0x6a, 0x01, 0xbb, 0x01, 0x93, 0x01, 0x95, 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}; static uint8_t reply1060[] = {0x21, 0x03, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x90, 0x10, 0x00, 0x60, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 , 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; static uint8_t reply1050[] = { 0x21, 0x04, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x90, 0x10, 0x50, 0x60, 0x00, 0x00, 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 }; static uint8_t reply1080[] = {0x21, 0x04, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x90, 0x10, 0x80, 0x60, 0x00, 0x00, 0x18, 0x5e, 0x01, 0x00, 0x00, 0xf1, 0x0f, 0x19, 0xd0, 0x4c, 0xae, 0x40, 0xe1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00}; static uint8_t reply1098[] = {0x21, 0x04, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x90, 0x10, 0x98, 0x60, 0x00, 0x00, 0x12, 0x19, 0xd0, 0x4c, 0xae, 0x40, 0xe1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00}; //User analog stick calib static uint8_t reply1010[] = {0x21, 0x04, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x90, 0x10, 0x10, 0x80, 0x00, 0x00, 0x18, 0x00, 0x00}; static uint8_t reply103D[] = {0x21, 0x05, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x90, 0x10, 0x3D, 0x60, 0x00, 0x00, 0x19, 0xF0, 0x07, 0x7f, 0xF0, 0x07, 0x7f, 0xF0, 0x07, 0x7f, 0xF0, 0x07, 0x7f, 0xF0, 0x07, 0x7f, 0xF0, 0x07, 0x7f, 0xF0, 0x07, 0x7f, 0xF0, 0x07, 0x7f, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00}; static uint8_t reply1020[] = {0x21, 0x04, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x90, 0x10, 0x20, 0x60, 0x00, 0x00, 0x18, 0x00, 0x00}; static uint8_t reply4001[] = {0x21, 0x04, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x80, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; static uint8_t reply4801[] = {0x21, 0x04, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x80, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; static uint8_t reply3001[] = {0x21, 0x04, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x80, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; static uint8_t reply3333[] = {0x21, 0x03, 0x8E, 0x84, 0x00, 0x12, 0x01, 0x18, 0x80, 0x01, 0x18, 0x80, 0x80, 0x80, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 , 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; // sending bluetooth values every 15ms void send_task(void* pvParameters) { const char* TAG = "send_task"; ESP_LOGI(TAG, "Sending hid reports on core %d\n", xPortGetCoreID() ); while(1) { send_buttons(); } } //LED blink void startBlink() { while(1) { gpio_set_level(LED_GPIO, 0); vTaskDelay(150); gpio_set_level(LED_GPIO, 1); vTaskDelay(150); gpio_set_level(LED_GPIO, 0); vTaskDelay(150); gpio_set_level(LED_GPIO, 1); vTaskDelay(1000); } vTaskDelete(NULL); } void set_bt_address() { //store a random mac address in flash nvs_handle my_handle; esp_err_t err; uint8_t bt_addr[8]; err = nvs_open("storage", NVS_READWRITE, &my_handle); if (err != ESP_OK) return err; size_t addr_size = 0; err = nvs_get_blob(my_handle, "mac_addr", NULL, &addr_size); if (err != ESP_OK && err != ESP_ERR_NVS_NOT_FOUND) return err; if (addr_size > 0) { err = nvs_get_blob(my_handle, "mac_addr", bt_addr, &addr_size); } else { for(int i=0; i<8; i++) bt_addr[i] = esp_random()%255; size_t addr_size = sizeof(bt_addr); err = nvs_set_blob(my_handle, "mac_addr", bt_addr, addr_size); } err = nvs_commit(my_handle); nvs_close(my_handle); esp_base_mac_addr_set(bt_addr); //put mac addr in switch pairing packet for(int z=0; z<6; z++) reply02[z+19] = bt_addr[z]; } void print_bt_address() { const char* TAG = "bt_address"; const uint8_t* bd_addr; bd_addr = esp_bt_dev_get_address(); ESP_LOGI(TAG, "my bluetooth address is %02X:%02X:%02X:%02X:%02X:%02X", bd_addr[0], bd_addr[1], bd_addr[2], bd_addr[3], bd_addr[4], bd_addr[5]); } #define SPP_TAG "tag" static void esp_bt_gap_cb(esp_bt_gap_cb_event_t event, esp_bt_gap_cb_param_t *param) { switch(event) { case ESP_BT_GAP_DISC_RES_EVT: ESP_LOGI(SPP_TAG, "ESP_BT_GAP_DISC_RES_EVT"); esp_log_buffer_hex(SPP_TAG, param->disc_res.bda, ESP_BD_ADDR_LEN); break; case ESP_BT_GAP_DISC_STATE_CHANGED_EVT: ESP_LOGI(SPP_TAG, "ESP_BT_GAP_DISC_STATE_CHANGED_EVT"); break; case ESP_BT_GAP_RMT_SRVCS_EVT: ESP_LOGI(SPP_TAG, "ESP_BT_GAP_RMT_SRVCS_EVT"); ESP_LOGI(SPP_TAG, "%d", param->rmt_srvcs.num_uuids); break; case ESP_BT_GAP_RMT_SRVC_REC_EVT: ESP_LOGI(SPP_TAG, "ESP_BT_GAP_RMT_SRVC_REC_EVT"); break; case ESP_BT_GAP_AUTH_CMPL_EVT: { if (param->auth_cmpl.stat == ESP_BT_STATUS_SUCCESS) { ESP_LOGI(SPP_TAG, "authentication success: %s", param->auth_cmpl.device_name); esp_log_buffer_hex(SPP_TAG, param->auth_cmpl.bda, ESP_BD_ADDR_LEN); } else { ESP_LOGE(SPP_TAG, "authentication failed, status:%d", param->auth_cmpl.stat); } break; } default: break; } } void esp_bt_hidd_cb(esp_hidd_cb_event_t event, esp_hidd_cb_param_t *param) { static const char* TAG = "esp_bt_hidd_cb"; switch (event) { case ESP_HIDD_INIT_EVT: if (param->init.status == ESP_HIDD_SUCCESS) { ESP_LOGI(TAG, "setting hid parameters"); esp_bt_hid_device_register_app(&app_param, &both_qos, &both_qos); } else { ESP_LOGE(TAG, "init hidd failed!"); } break; case ESP_HIDD_DEINIT_EVT: break; case ESP_HIDD_REGISTER_APP_EVT: if (param->register_app.status == ESP_HIDD_SUCCESS) { ESP_LOGI(TAG, "setting hid parameters success!"); ESP_LOGI(TAG, "setting to connectable, discoverable"); esp_bt_gap_set_scan_mode(ESP_BT_CONNECTABLE, ESP_BT_GENERAL_DISCOVERABLE); if (param->register_app.in_use && param->register_app.bd_addr != NULL) { ESP_LOGI(TAG, "start virtual cable plug!"); esp_bt_hid_device_connect(param->register_app.bd_addr); } } else { ESP_LOGE(TAG, "setting hid parameters failed!"); } break; case ESP_HIDD_UNREGISTER_APP_EVT: if (param->unregister_app.status == ESP_HIDD_SUCCESS) { ESP_LOGI(TAG, "unregister app success!"); } else { ESP_LOGE(TAG, "unregister app failed!"); } break; case ESP_HIDD_OPEN_EVT: if (param->open.status == ESP_HIDD_SUCCESS) { if (param->open.conn_status == ESP_HIDD_CONN_STATE_CONNECTING) { ESP_LOGI(TAG, "connecting..."); } else if (param->open.conn_status == ESP_HIDD_CONN_STATE_CONNECTED) { ESP_LOGI(TAG, "connected to %02x:%02x:%02x:%02x:%02x:%02x", param->open.bd_addr[0], param->open.bd_addr[1], param->open.bd_addr[2], param->open.bd_addr[3], param->open.bd_addr[4], param->open.bd_addr[5]); ESP_LOGI(TAG, "making self non-discoverable and non-connectable."); esp_bt_gap_set_scan_mode(ESP_BT_NON_CONNECTABLE, ESP_BT_NON_DISCOVERABLE); //clear blinking LED - solid vTaskDelete(BlinkHandle); BlinkHandle = NULL; gpio_set_level(LED_GPIO, 1); //start solid xSemaphoreTake(xSemaphore, portMAX_DELAY); connected = true; xSemaphoreGive(xSemaphore); //restart send_task if(SendingHandle != NULL) { vTaskDelete(SendingHandle); SendingHandle = NULL; } xTaskCreatePinnedToCore(send_task, "send_task", 2048, NULL, 2, &SendingHandle, 0); } else { ESP_LOGE(TAG, "unknown connection status"); } } else { ESP_LOGE(TAG, "open failed!"); } break; case ESP_HIDD_CLOSE_EVT: ESP_LOGI(TAG, "ESP_HIDD_CLOSE_EVT"); if (param->close.status == ESP_HIDD_SUCCESS) { if (param->close.conn_status == ESP_HIDD_CONN_STATE_DISCONNECTING) { ESP_LOGI(TAG, "disconnecting..."); } else if (param->close.conn_status == ESP_HIDD_CONN_STATE_DISCONNECTED) { ESP_LOGI(TAG, "disconnected!"); ESP_LOGI(TAG, "making self discoverable and connectable again."); esp_bt_gap_set_scan_mode(ESP_BT_CONNECTABLE, ESP_BT_GENERAL_DISCOVERABLE); xTaskCreate(startBlink, "blink_task", 1024, NULL, 1, &BlinkHandle); //start blink xSemaphoreTake(xSemaphore, portMAX_DELAY); connected = false; xSemaphoreGive(xSemaphore); } else { ESP_LOGE(TAG, "unknown connection status"); } } else { ESP_LOGE(TAG, "close failed!"); } break; case ESP_HIDD_SEND_REPORT_EVT: ESP_LOGI(TAG, "ESP_HIDD_SEND_REPORT_EVT id:0x%02x, type:%d", param->send_report.report_id, param->send_report.report_type); break; case ESP_HIDD_REPORT_ERR_EVT: ESP_LOGI(TAG, "ESP_HIDD_REPORT_ERR_EVT"); break; case ESP_HIDD_GET_REPORT_EVT: ESP_LOGI(TAG, "ESP_HIDD_GET_REPORT_EVT id:0x%02x, type:%d, size:%d", param->get_report.report_id, param->get_report.report_type, param->get_report.buffer_size); break; case ESP_HIDD_SET_REPORT_EVT: ESP_LOGI(TAG, "ESP_HIDD_SET_REPORT_EVT"); break; case ESP_HIDD_SET_PROTOCOL_EVT: ESP_LOGI(TAG, "ESP_HIDD_SET_PROTOCOL_EVT"); if (param->set_protocol.protocol_mode == ESP_HIDD_BOOT_MODE) { ESP_LOGI(TAG, " - boot protocol"); } else if (param->set_protocol.protocol_mode == ESP_HIDD_REPORT_MODE) { ESP_LOGI(TAG, " - report protocol"); } break; case ESP_HIDD_INTR_DATA_EVT: ESP_LOGI(TAG, "ESP_HIDD_INTR_DATA_EVT"); //switch pairing sequence if(param->intr_data.len == 49) { if(param->intr_data.data[10] == 2) { esp_bt_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply02), reply02); } if(param->intr_data.data[10] == 8) { esp_bt_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply08), reply08); } if(param->intr_data.data[10] == 16 && param->intr_data.data[11] == 0 && param->intr_data.data[12] == 96) { esp_bt_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply1060), reply1060); } if(param->intr_data.data[10] == 16 && param->intr_data.data[11] == 80 && param->intr_data.data[12] == 96) { esp_bt_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply1050), reply1050); } if(param->intr_data.data[10] == 3) { esp_bt_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply03), reply03); } if(param->intr_data.data[10] == 4) { esp_bt_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply04), reply04); } if(param->intr_data.data[10] == 16 && param->intr_data.data[11] == 128 && param->intr_data.data[12] == 96) { esp_bt_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply1080), reply1080); } if(param->intr_data.data[10] == 16 && param->intr_data.data[11] == 152 && param->intr_data.data[12] == 96) { esp_bt_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply1098), reply1098); } if(param->intr_data.data[10] == 16 && param->intr_data.data[11] == 16 && param->intr_data.data[12] == 128) { esp_bt_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply1010), reply1010); } if(param->intr_data.data[10] == 16 && param->intr_data.data[11] == 61 && param->intr_data.data[12] == 96) { esp_bt_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply103D), reply103D); } if(param->intr_data.data[10] == 16 && param->intr_data.data[11] == 32 && param->intr_data.data[12] == 96) { esp_bt_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply1020), reply1020); } if(param->intr_data.data[10] == 64 && param->intr_data.data[11] == 1) { esp_bt_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply4001), reply4001); } if(param->intr_data.data[10] == 72 && param->intr_data.data[11] == 1) { esp_bt_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply4801), reply4801); } if(param->intr_data.data[10] == 48 && param->intr_data.data[11] == 1) { esp_bt_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply3001), reply3001); } if(param->intr_data.data[10] == 33 && param->intr_data.data[11] == 33) { esp_bt_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply3333), reply3333); paired = 1; } if(param->intr_data.data[10] == 64 && param->intr_data.data[11] == 2) { esp_bt_hid_device_send_report(ESP_HIDD_REPORT_TYPE_INTRDATA, 0xa1, sizeof(reply4001), reply4001); } ESP_LOGI(TAG, "got an interrupt report from host, subcommand: %d %d %d Length: %d", param->intr_data.data[10], param->intr_data.data[11], param->intr_data.data[12], param->intr_data.len); } else { ESP_LOGI("heap size:", "%d", xPortGetFreeHeapSize()); ESP_LOGI(TAG, "pairing packet size != 49, subcommand: %d %d %d Length: %d", param->intr_data.data[10], param->intr_data.data[11], param->intr_data.data[12], param->intr_data.len); } break; case ESP_HIDD_VC_UNPLUG_EVT: ESP_LOGI(TAG, "ESP_HIDD_VC_UNPLUG_EVT"); if (param->vc_unplug.status == ESP_HIDD_SUCCESS) { if (param->close.conn_status == ESP_HIDD_CONN_STATE_DISCONNECTED) { ESP_LOGI(TAG, "disconnected!"); ESP_LOGI(TAG, "making self discoverable and connectable again."); esp_bt_gap_set_scan_mode(ESP_BT_CONNECTABLE, ESP_BT_GENERAL_DISCOVERABLE); } else { ESP_LOGE(TAG, "unknown connection status"); } } else { ESP_LOGE(TAG, "close failed!"); } break; default: break; } } void app_main(void); void app_main(void) { //GameCube Contoller reading init rmt_tx_init(); rmt_rx_init(); xTaskCreatePinnedToCore(get_buttons, "gbuttons", 2048, NULL, 1, NULL, 1); //flash LED vTaskDelay(100); gpio_set_level(LED_GPIO, 0); vTaskDelay(100); gpio_set_level(LED_GPIO, 1); vTaskDelay(100); gpio_set_level(LED_GPIO, 0); vTaskDelay(100); gpio_set_level(LED_GPIO, 1); vTaskDelay(100); gpio_set_level(LED_GPIO, 0); const char* TAG = "app_main"; esp_err_t ret; xSemaphore = xSemaphoreCreateMutex(); gpio_config_t io_conf; //disable interrupt io_conf.intr_type = GPIO_PIN_INTR_DISABLE; //set as output mode io_conf.mode = GPIO_MODE_OUTPUT; //bit mask of the pins that you want to set,e.g.GPIO18/19 io_conf.pin_bit_mask = PIN_SEL; //disable pull-down mode io_conf.pull_down_en = 0; //disable pull-up mode io_conf.pull_up_en = 0; //configure GPIO with the given settings gpio_config(&io_conf); app_param.name = "BlueCubeMod"; app_param.description = "BlueCubeMod Example"; app_param.provider = "ESP32"; app_param.subclass = 0x8; app_param.desc_list = hid_descriptor_gamecube; app_param.desc_list_len = hid_descriptor_gc_len; memset(&both_qos, 0, sizeof(esp_hidd_qos_param_t)); ret = nvs_flash_init(); if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND) { ESP_ERROR_CHECK(nvs_flash_erase()); ret = nvs_flash_init(); } ESP_ERROR_CHECK( ret ); set_bt_address(); ESP_ERROR_CHECK(esp_bt_controller_mem_release(ESP_BT_MODE_BLE)); esp_bt_controller_config_t bt_cfg = BT_CONTROLLER_INIT_CONFIG_DEFAULT(); esp_bt_mem_release(ESP_BT_MODE_BLE); if ((ret = esp_bt_controller_init(&bt_cfg)) != ESP_OK) { ESP_LOGE(TAG, "initialize controller failed: %s\n", esp_err_to_name(ret)); return; } if ((ret = esp_bt_controller_enable(ESP_BT_MODE_CLASSIC_BT)) != ESP_OK) { ESP_LOGE(TAG, "enable controller failed: %s\n", esp_err_to_name(ret)); return; } if ((ret = esp_bluedroid_init()) != ESP_OK) { ESP_LOGE(TAG, "initialize bluedroid failed: %s\n", esp_err_to_name(ret)); return; } if ((ret = esp_bluedroid_enable()) != ESP_OK) { ESP_LOGE(TAG, "enable bluedroid failed: %s\n", esp_err_to_name(ret)); return; } if ((ret = esp_bt_gap_register_callback(esp_bt_gap_cb)) != ESP_OK) { ESP_LOGE(TAG, "gap register failed: %s\n", esp_err_to_name(ret)); return; } ESP_LOGI(TAG, "setting device name"); esp_bt_dev_set_device_name("Pro Controller"); ESP_LOGI(TAG, "setting cod major, Pro Controller"); esp_bt_cod_t cod; cod.major = 0x05; cod.minor = 0b0000010; esp_bt_gap_set_cod(cod,ESP_BT_SET_COD_MAJOR_MINOR ); vTaskDelay(2000 / portTICK_PERIOD_MS); ESP_LOGI(TAG, "register hid device callback"); esp_bt_hid_device_register_callback(esp_bt_hidd_cb); ESP_LOGI(TAG, "starting hid device"); esp_bt_hid_device_init(); //start blinking xTaskCreate(startBlink, "blink_task", 1024, NULL, 1, &BlinkHandle); print_bt_address(); } ================================================ FILE: Firmware/BlueCubeModv2/sdkconfig ================================================ # # Automatically generated file. DO NOT EDIT. # Espressif IoT Development Framework (ESP-IDF) Project Configuration # CONFIG_IDF_CMAKE=y CONFIG_IDF_TARGET_ARCH_XTENSA=y CONFIG_IDF_TARGET="esp32" CONFIG_IDF_TARGET_ESP32=y CONFIG_IDF_FIRMWARE_CHIP_ID=0x0000 # # SDK tool configuration # CONFIG_SDK_TOOLPREFIX="xtensa-esp32-elf-" # CONFIG_SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS is not set # end of SDK tool configuration # # Build type # CONFIG_APP_BUILD_TYPE_APP_2NDBOOT=y # CONFIG_APP_BUILD_TYPE_ELF_RAM is not set CONFIG_APP_BUILD_GENERATE_BINARIES=y CONFIG_APP_BUILD_BOOTLOADER=y CONFIG_APP_BUILD_USE_FLASH_SECTIONS=y # CONFIG_APP_REPRODUCIBLE_BUILD is not set # end of Build type # # Application manager # CONFIG_APP_COMPILE_TIME_DATE=y # CONFIG_APP_EXCLUDE_PROJECT_VER_VAR is not set # CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR is not set # CONFIG_APP_PROJECT_VER_FROM_CONFIG is not set CONFIG_APP_RETRIEVE_LEN_ELF_SHA=16 # end of Application manager # # Bootloader config # CONFIG_BOOTLOADER_OFFSET_IN_FLASH=0x1000 CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE=y # CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG is not set # CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF is not set # CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE is not set # CONFIG_BOOTLOADER_LOG_LEVEL_NONE is not set # CONFIG_BOOTLOADER_LOG_LEVEL_ERROR is not set # CONFIG_BOOTLOADER_LOG_LEVEL_WARN is not set CONFIG_BOOTLOADER_LOG_LEVEL_INFO=y # CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG is not set # CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE is not set CONFIG_BOOTLOADER_LOG_LEVEL=3 # CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_8V is not set CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V=y # CONFIG_BOOTLOADER_FACTORY_RESET is not set # CONFIG_BOOTLOADER_APP_TEST is not set CONFIG_BOOTLOADER_WDT_ENABLE=y # CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE is not set CONFIG_BOOTLOADER_WDT_TIME_MS=9000 # CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE is not set # CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP is not set # CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON is not set # CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS is not set CONFIG_BOOTLOADER_RESERVE_RTC_SIZE=0 # CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC is not set CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT=y # end of Bootloader config # # Security features # # CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT is not set # CONFIG_SECURE_BOOT is not set # CONFIG_SECURE_FLASH_ENC_ENABLED is not set # end of Security features # # Serial flasher config # # CONFIG_ESPTOOLPY_NO_STUB is not set # CONFIG_ESPTOOLPY_FLASHMODE_QIO is not set # CONFIG_ESPTOOLPY_FLASHMODE_QOUT is not set CONFIG_ESPTOOLPY_FLASHMODE_DIO=y # CONFIG_ESPTOOLPY_FLASHMODE_DOUT is not set CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR=y CONFIG_ESPTOOLPY_FLASHMODE="dio" # CONFIG_ESPTOOLPY_FLASHFREQ_80M is not set CONFIG_ESPTOOLPY_FLASHFREQ_40M=y # CONFIG_ESPTOOLPY_FLASHFREQ_26M is not set # CONFIG_ESPTOOLPY_FLASHFREQ_20M is not set CONFIG_ESPTOOLPY_FLASHFREQ="40m" # CONFIG_ESPTOOLPY_FLASHSIZE_1MB is not set CONFIG_ESPTOOLPY_FLASHSIZE_2MB=y # CONFIG_ESPTOOLPY_FLASHSIZE_4MB is not set # CONFIG_ESPTOOLPY_FLASHSIZE_8MB is not set # CONFIG_ESPTOOLPY_FLASHSIZE_16MB is not set CONFIG_ESPTOOLPY_FLASHSIZE="2MB" CONFIG_ESPTOOLPY_FLASHSIZE_DETECT=y CONFIG_ESPTOOLPY_BEFORE_RESET=y # CONFIG_ESPTOOLPY_BEFORE_NORESET is not set CONFIG_ESPTOOLPY_BEFORE="default_reset" CONFIG_ESPTOOLPY_AFTER_RESET=y # CONFIG_ESPTOOLPY_AFTER_NORESET is not set CONFIG_ESPTOOLPY_AFTER="hard_reset" # CONFIG_ESPTOOLPY_MONITOR_BAUD_CONSOLE is not set # CONFIG_ESPTOOLPY_MONITOR_BAUD_9600B is not set # CONFIG_ESPTOOLPY_MONITOR_BAUD_57600B is not set CONFIG_ESPTOOLPY_MONITOR_BAUD_115200B=y # CONFIG_ESPTOOLPY_MONITOR_BAUD_230400B is not set # CONFIG_ESPTOOLPY_MONITOR_BAUD_921600B is not set # CONFIG_ESPTOOLPY_MONITOR_BAUD_2MB is not set # CONFIG_ESPTOOLPY_MONITOR_BAUD_OTHER is not set CONFIG_ESPTOOLPY_MONITOR_BAUD_OTHER_VAL=115200 CONFIG_ESPTOOLPY_MONITOR_BAUD=115200 # end of Serial flasher config # # Partition Table # CONFIG_PARTITION_TABLE_SINGLE_APP=y # CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE is not set # CONFIG_PARTITION_TABLE_TWO_OTA is not set # CONFIG_PARTITION_TABLE_CUSTOM is not set CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv" CONFIG_PARTITION_TABLE_FILENAME="partitions_singleapp.csv" CONFIG_PARTITION_TABLE_OFFSET=0x8000 CONFIG_PARTITION_TABLE_MD5=y # end of Partition Table # # Compiler options # CONFIG_COMPILER_OPTIMIZATION_DEFAULT=y # CONFIG_COMPILER_OPTIMIZATION_SIZE is not set # CONFIG_COMPILER_OPTIMIZATION_PERF is not set # CONFIG_COMPILER_OPTIMIZATION_NONE is not set CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE=y # CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT is not set # CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE is not set CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL=2 # CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT is not set CONFIG_COMPILER_HIDE_PATHS_MACROS=y # CONFIG_COMPILER_CXX_EXCEPTIONS is not set # CONFIG_COMPILER_CXX_RTTI is not set CONFIG_COMPILER_STACK_CHECK_MODE_NONE=y # CONFIG_COMPILER_STACK_CHECK_MODE_NORM is not set # CONFIG_COMPILER_STACK_CHECK_MODE_STRONG is not set # CONFIG_COMPILER_STACK_CHECK_MODE_ALL is not set # CONFIG_COMPILER_WARN_WRITE_STRINGS is not set # CONFIG_COMPILER_DISABLE_GCC8_WARNINGS is not set # CONFIG_COMPILER_DUMP_RTL_FILES is not set # end of Compiler options # # Component config # # # Application Level Tracing # # CONFIG_APPTRACE_DEST_JTAG is not set CONFIG_APPTRACE_DEST_NONE=y CONFIG_APPTRACE_LOCK_ENABLE=y # end of Application Level Tracing # # ESP-ASIO # # CONFIG_ASIO_SSL_SUPPORT is not set # end of ESP-ASIO # # Bluetooth # CONFIG_BT_ENABLED=y # # Bluetooth controller # # CONFIG_BTDM_CTRL_MODE_BLE_ONLY is not set CONFIG_BTDM_CTRL_MODE_BR_EDR_ONLY=y # CONFIG_BTDM_CTRL_MODE_BTDM is not set CONFIG_BTDM_CTRL_BR_EDR_MAX_ACL_CONN=2 CONFIG_BTDM_CTRL_BR_EDR_MAX_SYNC_CONN=0 # CONFIG_BTDM_CTRL_BR_EDR_SCO_DATA_PATH_HCI is not set CONFIG_BTDM_CTRL_BR_EDR_SCO_DATA_PATH_PCM=y CONFIG_BTDM_CTRL_BR_EDR_SCO_DATA_PATH_EFF=1 CONFIG_BTDM_CTRL_PCM_ROLE_EDGE_CONFIG=y CONFIG_BTDM_CTRL_PCM_ROLE_MASTER=y # CONFIG_BTDM_CTRL_PCM_ROLE_SLAVE is not set CONFIG_BTDM_CTRL_PCM_POLAR_FALLING_EDGE=y # CONFIG_BTDM_CTRL_PCM_POLAR_RISING_EDGE is not set CONFIG_BTDM_CTRL_PCM_ROLE_EFF=0 CONFIG_BTDM_CTRL_PCM_POLAR_EFF=0 CONFIG_BTDM_CTRL_LEGACY_AUTH_VENDOR_EVT=y CONFIG_BTDM_CTRL_LEGACY_AUTH_VENDOR_EVT_EFF=y CONFIG_BTDM_CTRL_BLE_MAX_CONN_EFF=0 CONFIG_BTDM_CTRL_BR_EDR_MAX_ACL_CONN_EFF=2 CONFIG_BTDM_CTRL_BR_EDR_MAX_SYNC_CONN_EFF=0 CONFIG_BTDM_CTRL_PINNED_TO_CORE_0=y # CONFIG_BTDM_CTRL_PINNED_TO_CORE_1 is not set CONFIG_BTDM_CTRL_PINNED_TO_CORE=0 CONFIG_BTDM_CTRL_HCI_MODE_VHCI=y # CONFIG_BTDM_CTRL_HCI_MODE_UART_H4 is not set # # MODEM SLEEP Options # CONFIG_BTDM_CTRL_MODEM_SLEEP=y CONFIG_BTDM_CTRL_MODEM_SLEEP_MODE_ORIG=y # CONFIG_BTDM_CTRL_MODEM_SLEEP_MODE_EVED is not set CONFIG_BTDM_CTRL_LPCLK_SEL_MAIN_XTAL=y # end of MODEM SLEEP Options CONFIG_BTDM_BLE_SLEEP_CLOCK_ACCURACY_INDEX_EFF=1 CONFIG_BTDM_RESERVE_DRAM=0xdb5c CONFIG_BTDM_CTRL_HLI=y # end of Bluetooth controller CONFIG_BT_BLUEDROID_ENABLED=y # CONFIG_BT_NIMBLE_ENABLED is not set # CONFIG_BT_CONTROLLER_ONLY is not set # # Bluedroid Options # CONFIG_BT_BTC_TASK_STACK_SIZE=3072 CONFIG_BT_BLUEDROID_PINNED_TO_CORE_0=y # CONFIG_BT_BLUEDROID_PINNED_TO_CORE_1 is not set CONFIG_BT_BLUEDROID_PINNED_TO_CORE=0 CONFIG_BT_BTU_TASK_STACK_SIZE=4096 # CONFIG_BT_BLUEDROID_MEM_DEBUG is not set CONFIG_BT_CLASSIC_ENABLED=y # CONFIG_BT_A2DP_ENABLE is not set # CONFIG_BT_SPP_ENABLED is not set # CONFIG_BT_HFP_ENABLE is not set CONFIG_BT_HID_ENABLED=y # CONFIG_BT_HID_HOST_ENABLED is not set CONFIG_BT_HID_DEVICE_ENABLED=y CONFIG_BT_SSP_ENABLED=y CONFIG_BT_BLE_ENABLED=y CONFIG_BT_GATTS_ENABLE=y # CONFIG_BT_GATTS_PPCP_CHAR_GAP is not set # CONFIG_BT_BLE_BLUFI_ENABLE is not set CONFIG_BT_GATT_MAX_SR_PROFILES=8 # CONFIG_BT_GATTS_SEND_SERVICE_CHANGE_MANUAL is not set CONFIG_BT_GATTS_SEND_SERVICE_CHANGE_AUTO=y CONFIG_BT_GATTS_SEND_SERVICE_CHANGE_MODE=0 CONFIG_BT_GATTC_ENABLE=y # CONFIG_BT_GATTC_CACHE_NVS_FLASH is not set CONFIG_BT_GATTC_CONNECT_RETRY_COUNT=3 CONFIG_BT_BLE_SMP_ENABLE=y # CONFIG_BT_SMP_SLAVE_CON_PARAMS_UPD_ENABLE is not set # CONFIG_BT_STACK_NO_LOG is not set # # BT DEBUG LOG LEVEL # # CONFIG_BT_LOG_HCI_TRACE_LEVEL_NONE is not set # CONFIG_BT_LOG_HCI_TRACE_LEVEL_ERROR is not set CONFIG_BT_LOG_HCI_TRACE_LEVEL_WARNING=y # CONFIG_BT_LOG_HCI_TRACE_LEVEL_API is not set # CONFIG_BT_LOG_HCI_TRACE_LEVEL_EVENT is not set # CONFIG_BT_LOG_HCI_TRACE_LEVEL_DEBUG is not set # CONFIG_BT_LOG_HCI_TRACE_LEVEL_VERBOSE is not set CONFIG_BT_LOG_HCI_TRACE_LEVEL=2 # CONFIG_BT_LOG_BTM_TRACE_LEVEL_NONE is not set # CONFIG_BT_LOG_BTM_TRACE_LEVEL_ERROR is not set CONFIG_BT_LOG_BTM_TRACE_LEVEL_WARNING=y # CONFIG_BT_LOG_BTM_TRACE_LEVEL_API is not set # CONFIG_BT_LOG_BTM_TRACE_LEVEL_EVENT is not set # CONFIG_BT_LOG_BTM_TRACE_LEVEL_DEBUG is not set # CONFIG_BT_LOG_BTM_TRACE_LEVEL_VERBOSE is not set CONFIG_BT_LOG_BTM_TRACE_LEVEL=2 # CONFIG_BT_LOG_L2CAP_TRACE_LEVEL_NONE is not set # CONFIG_BT_LOG_L2CAP_TRACE_LEVEL_ERROR is not set CONFIG_BT_LOG_L2CAP_TRACE_LEVEL_WARNING=y # CONFIG_BT_LOG_L2CAP_TRACE_LEVEL_API is not set # CONFIG_BT_LOG_L2CAP_TRACE_LEVEL_EVENT is not set # CONFIG_BT_LOG_L2CAP_TRACE_LEVEL_DEBUG is not set # CONFIG_BT_LOG_L2CAP_TRACE_LEVEL_VERBOSE is not set CONFIG_BT_LOG_L2CAP_TRACE_LEVEL=2 # CONFIG_BT_LOG_RFCOMM_TRACE_LEVEL_NONE is not set # CONFIG_BT_LOG_RFCOMM_TRACE_LEVEL_ERROR is not set CONFIG_BT_LOG_RFCOMM_TRACE_LEVEL_WARNING=y # CONFIG_BT_LOG_RFCOMM_TRACE_LEVEL_API is not set # CONFIG_BT_LOG_RFCOMM_TRACE_LEVEL_EVENT is not set # CONFIG_BT_LOG_RFCOMM_TRACE_LEVEL_DEBUG is not set # CONFIG_BT_LOG_RFCOMM_TRACE_LEVEL_VERBOSE is not set CONFIG_BT_LOG_RFCOMM_TRACE_LEVEL=2 # CONFIG_BT_LOG_SDP_TRACE_LEVEL_NONE is not set # CONFIG_BT_LOG_SDP_TRACE_LEVEL_ERROR is not set CONFIG_BT_LOG_SDP_TRACE_LEVEL_WARNING=y # CONFIG_BT_LOG_SDP_TRACE_LEVEL_API is not set # CONFIG_BT_LOG_SDP_TRACE_LEVEL_EVENT is not set # CONFIG_BT_LOG_SDP_TRACE_LEVEL_DEBUG is not set # CONFIG_BT_LOG_SDP_TRACE_LEVEL_VERBOSE is not set CONFIG_BT_LOG_SDP_TRACE_LEVEL=2 # CONFIG_BT_LOG_GAP_TRACE_LEVEL_NONE is not set # CONFIG_BT_LOG_GAP_TRACE_LEVEL_ERROR is not set CONFIG_BT_LOG_GAP_TRACE_LEVEL_WARNING=y # CONFIG_BT_LOG_GAP_TRACE_LEVEL_API is not set # CONFIG_BT_LOG_GAP_TRACE_LEVEL_EVENT is not set # CONFIG_BT_LOG_GAP_TRACE_LEVEL_DEBUG is not set # CONFIG_BT_LOG_GAP_TRACE_LEVEL_VERBOSE is not set CONFIG_BT_LOG_GAP_TRACE_LEVEL=2 # CONFIG_BT_LOG_BNEP_TRACE_LEVEL_NONE is not set # CONFIG_BT_LOG_BNEP_TRACE_LEVEL_ERROR is not set CONFIG_BT_LOG_BNEP_TRACE_LEVEL_WARNING=y # CONFIG_BT_LOG_BNEP_TRACE_LEVEL_API is not set # CONFIG_BT_LOG_BNEP_TRACE_LEVEL_EVENT is not set # CONFIG_BT_LOG_BNEP_TRACE_LEVEL_DEBUG is not set # CONFIG_BT_LOG_BNEP_TRACE_LEVEL_VERBOSE is not set CONFIG_BT_LOG_BNEP_TRACE_LEVEL=2 # CONFIG_BT_LOG_PAN_TRACE_LEVEL_NONE is not set # CONFIG_BT_LOG_PAN_TRACE_LEVEL_ERROR is not set CONFIG_BT_LOG_PAN_TRACE_LEVEL_WARNING=y # CONFIG_BT_LOG_PAN_TRACE_LEVEL_API is not set # CONFIG_BT_LOG_PAN_TRACE_LEVEL_EVENT is not set # CONFIG_BT_LOG_PAN_TRACE_LEVEL_DEBUG is not set # CONFIG_BT_LOG_PAN_TRACE_LEVEL_VERBOSE is not set CONFIG_BT_LOG_PAN_TRACE_LEVEL=2 # CONFIG_BT_LOG_A2D_TRACE_LEVEL_NONE is not set # CONFIG_BT_LOG_A2D_TRACE_LEVEL_ERROR is not set CONFIG_BT_LOG_A2D_TRACE_LEVEL_WARNING=y # CONFIG_BT_LOG_A2D_TRACE_LEVEL_API is not set # CONFIG_BT_LOG_A2D_TRACE_LEVEL_EVENT is not set # CONFIG_BT_LOG_A2D_TRACE_LEVEL_DEBUG is not set # CONFIG_BT_LOG_A2D_TRACE_LEVEL_VERBOSE is not set CONFIG_BT_LOG_A2D_TRACE_LEVEL=2 # CONFIG_BT_LOG_AVDT_TRACE_LEVEL_NONE is not set # CONFIG_BT_LOG_AVDT_TRACE_LEVEL_ERROR is not set CONFIG_BT_LOG_AVDT_TRACE_LEVEL_WARNING=y # CONFIG_BT_LOG_AVDT_TRACE_LEVEL_API is not set # CONFIG_BT_LOG_AVDT_TRACE_LEVEL_EVENT is not set # CONFIG_BT_LOG_AVDT_TRACE_LEVEL_DEBUG is not set # CONFIG_BT_LOG_AVDT_TRACE_LEVEL_VERBOSE is not set CONFIG_BT_LOG_AVDT_TRACE_LEVEL=2 # CONFIG_BT_LOG_AVCT_TRACE_LEVEL_NONE is not set # CONFIG_BT_LOG_AVCT_TRACE_LEVEL_ERROR is not set CONFIG_BT_LOG_AVCT_TRACE_LEVEL_WARNING=y # CONFIG_BT_LOG_AVCT_TRACE_LEVEL_API is not set # CONFIG_BT_LOG_AVCT_TRACE_LEVEL_EVENT is not set # CONFIG_BT_LOG_AVCT_TRACE_LEVEL_DEBUG is not set # CONFIG_BT_LOG_AVCT_TRACE_LEVEL_VERBOSE is not set CONFIG_BT_LOG_AVCT_TRACE_LEVEL=2 # CONFIG_BT_LOG_AVRC_TRACE_LEVEL_NONE is not set # CONFIG_BT_LOG_AVRC_TRACE_LEVEL_ERROR is not set CONFIG_BT_LOG_AVRC_TRACE_LEVEL_WARNING=y # CONFIG_BT_LOG_AVRC_TRACE_LEVEL_API is not set # CONFIG_BT_LOG_AVRC_TRACE_LEVEL_EVENT is not set # CONFIG_BT_LOG_AVRC_TRACE_LEVEL_DEBUG is not set # CONFIG_BT_LOG_AVRC_TRACE_LEVEL_VERBOSE is not set CONFIG_BT_LOG_AVRC_TRACE_LEVEL=2 # CONFIG_BT_LOG_MCA_TRACE_LEVEL_NONE is not set # CONFIG_BT_LOG_MCA_TRACE_LEVEL_ERROR is not set CONFIG_BT_LOG_MCA_TRACE_LEVEL_WARNING=y # CONFIG_BT_LOG_MCA_TRACE_LEVEL_API is not set # CONFIG_BT_LOG_MCA_TRACE_LEVEL_EVENT is not set # CONFIG_BT_LOG_MCA_TRACE_LEVEL_DEBUG is not set # CONFIG_BT_LOG_MCA_TRACE_LEVEL_VERBOSE is not set CONFIG_BT_LOG_MCA_TRACE_LEVEL=2 # CONFIG_BT_LOG_HID_TRACE_LEVEL_NONE is not set # CONFIG_BT_LOG_HID_TRACE_LEVEL_ERROR is not set CONFIG_BT_LOG_HID_TRACE_LEVEL_WARNING=y # CONFIG_BT_LOG_HID_TRACE_LEVEL_API is not set # CONFIG_BT_LOG_HID_TRACE_LEVEL_EVENT is not set # CONFIG_BT_LOG_HID_TRACE_LEVEL_DEBUG is not set # CONFIG_BT_LOG_HID_TRACE_LEVEL_VERBOSE is not set CONFIG_BT_LOG_HID_TRACE_LEVEL=2 # CONFIG_BT_LOG_APPL_TRACE_LEVEL_NONE is not set # CONFIG_BT_LOG_APPL_TRACE_LEVEL_ERROR is not set CONFIG_BT_LOG_APPL_TRACE_LEVEL_WARNING=y # CONFIG_BT_LOG_APPL_TRACE_LEVEL_API is not set # CONFIG_BT_LOG_APPL_TRACE_LEVEL_EVENT is not set # CONFIG_BT_LOG_APPL_TRACE_LEVEL_DEBUG is not set # CONFIG_BT_LOG_APPL_TRACE_LEVEL_VERBOSE is not set CONFIG_BT_LOG_APPL_TRACE_LEVEL=2 # CONFIG_BT_LOG_GATT_TRACE_LEVEL_NONE is not set # CONFIG_BT_LOG_GATT_TRACE_LEVEL_ERROR is not set CONFIG_BT_LOG_GATT_TRACE_LEVEL_WARNING=y # CONFIG_BT_LOG_GATT_TRACE_LEVEL_API is not set # CONFIG_BT_LOG_GATT_TRACE_LEVEL_EVENT is not set # CONFIG_BT_LOG_GATT_TRACE_LEVEL_DEBUG is not set # CONFIG_BT_LOG_GATT_TRACE_LEVEL_VERBOSE is not set CONFIG_BT_LOG_GATT_TRACE_LEVEL=2 # CONFIG_BT_LOG_SMP_TRACE_LEVEL_NONE is not set # CONFIG_BT_LOG_SMP_TRACE_LEVEL_ERROR is not set CONFIG_BT_LOG_SMP_TRACE_LEVEL_WARNING=y # CONFIG_BT_LOG_SMP_TRACE_LEVEL_API is not set # CONFIG_BT_LOG_SMP_TRACE_LEVEL_EVENT is not set # CONFIG_BT_LOG_SMP_TRACE_LEVEL_DEBUG is not set # CONFIG_BT_LOG_SMP_TRACE_LEVEL_VERBOSE is not set CONFIG_BT_LOG_SMP_TRACE_LEVEL=2 # CONFIG_BT_LOG_BTIF_TRACE_LEVEL_NONE is not set # CONFIG_BT_LOG_BTIF_TRACE_LEVEL_ERROR is not set CONFIG_BT_LOG_BTIF_TRACE_LEVEL_WARNING=y # CONFIG_BT_LOG_BTIF_TRACE_LEVEL_API is not set # CONFIG_BT_LOG_BTIF_TRACE_LEVEL_EVENT is not set # CONFIG_BT_LOG_BTIF_TRACE_LEVEL_DEBUG is not set # CONFIG_BT_LOG_BTIF_TRACE_LEVEL_VERBOSE is not set CONFIG_BT_LOG_BTIF_TRACE_LEVEL=2 # CONFIG_BT_LOG_BTC_TRACE_LEVEL_NONE is not set # CONFIG_BT_LOG_BTC_TRACE_LEVEL_ERROR is not set CONFIG_BT_LOG_BTC_TRACE_LEVEL_WARNING=y # CONFIG_BT_LOG_BTC_TRACE_LEVEL_API is not set # CONFIG_BT_LOG_BTC_TRACE_LEVEL_EVENT is not set # CONFIG_BT_LOG_BTC_TRACE_LEVEL_DEBUG is not set # CONFIG_BT_LOG_BTC_TRACE_LEVEL_VERBOSE is not set CONFIG_BT_LOG_BTC_TRACE_LEVEL=2 # CONFIG_BT_LOG_OSI_TRACE_LEVEL_NONE is not set # CONFIG_BT_LOG_OSI_TRACE_LEVEL_ERROR is not set CONFIG_BT_LOG_OSI_TRACE_LEVEL_WARNING=y # CONFIG_BT_LOG_OSI_TRACE_LEVEL_API is not set # CONFIG_BT_LOG_OSI_TRACE_LEVEL_EVENT is not set # CONFIG_BT_LOG_OSI_TRACE_LEVEL_DEBUG is not set # CONFIG_BT_LOG_OSI_TRACE_LEVEL_VERBOSE is not set CONFIG_BT_LOG_OSI_TRACE_LEVEL=2 # CONFIG_BT_LOG_BLUFI_TRACE_LEVEL_NONE is not set # CONFIG_BT_LOG_BLUFI_TRACE_LEVEL_ERROR is not set CONFIG_BT_LOG_BLUFI_TRACE_LEVEL_WARNING=y # CONFIG_BT_LOG_BLUFI_TRACE_LEVEL_API is not set # CONFIG_BT_LOG_BLUFI_TRACE_LEVEL_EVENT is not set # CONFIG_BT_LOG_BLUFI_TRACE_LEVEL_DEBUG is not set # CONFIG_BT_LOG_BLUFI_TRACE_LEVEL_VERBOSE is not set CONFIG_BT_LOG_BLUFI_TRACE_LEVEL=2 # end of BT DEBUG LOG LEVEL CONFIG_BT_ACL_CONNECTIONS=4 CONFIG_BT_MULTI_CONNECTION_ENBALE=y # CONFIG_BT_ALLOCATION_FROM_SPIRAM_FIRST is not set # CONFIG_BT_BLE_DYNAMIC_ENV_MEMORY is not set # CONFIG_BT_BLE_HOST_QUEUE_CONG_CHECK is not set CONFIG_BT_SMP_ENABLE=y CONFIG_BT_BLE_ESTAB_LINK_CONN_TOUT=30 CONFIG_BT_MAX_DEVICE_NAME_LEN=32 # CONFIG_BT_BLE_RPA_SUPPORTED is not set # end of Bluedroid Options # end of Bluetooth # CONFIG_BLE_MESH is not set # # CoAP Configuration # CONFIG_COAP_MBEDTLS_PSK=y # CONFIG_COAP_MBEDTLS_PKI is not set # CONFIG_COAP_MBEDTLS_DEBUG is not set CONFIG_COAP_LOG_DEFAULT_LEVEL=0 # end of CoAP Configuration # # Driver configurations # # # ADC configuration # # CONFIG_ADC_FORCE_XPD_FSM is not set CONFIG_ADC_DISABLE_DAC=y # end of ADC configuration # # MCPWM configuration # # CONFIG_MCPWM_ISR_IN_IRAM is not set # end of MCPWM configuration # # SPI configuration # # CONFIG_SPI_MASTER_IN_IRAM is not set CONFIG_SPI_MASTER_ISR_IN_IRAM=y # CONFIG_SPI_SLAVE_IN_IRAM is not set CONFIG_SPI_SLAVE_ISR_IN_IRAM=y # end of SPI configuration # # TWAI configuration # # CONFIG_TWAI_ISR_IN_IRAM is not set # CONFIG_TWAI_ERRATA_FIX_BUS_OFF_REC is not set # CONFIG_TWAI_ERRATA_FIX_TX_INTR_LOST is not set # CONFIG_TWAI_ERRATA_FIX_RX_FRAME_INVALID is not set # CONFIG_TWAI_ERRATA_FIX_RX_FIFO_CORRUPT is not set # end of TWAI configuration # # UART configuration # # CONFIG_UART_ISR_IN_IRAM is not set # end of UART configuration # # RTCIO configuration # # CONFIG_RTCIO_SUPPORT_RTC_GPIO_DESC is not set # end of RTCIO configuration # # GPIO Configuration # # CONFIG_GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL is not set # end of GPIO Configuration # # GDMA Configuration # # CONFIG_GDMA_CTRL_FUNC_IN_IRAM is not set # CONFIG_GDMA_ISR_IRAM_SAFE is not set # end of GDMA Configuration # end of Driver configurations # # eFuse Bit Manager # # CONFIG_EFUSE_CUSTOM_TABLE is not set # CONFIG_EFUSE_VIRTUAL is not set # CONFIG_EFUSE_CODE_SCHEME_COMPAT_NONE is not set CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4=y # CONFIG_EFUSE_CODE_SCHEME_COMPAT_REPEAT is not set CONFIG_EFUSE_MAX_BLK_LEN=192 # end of eFuse Bit Manager # # ESP-TLS # CONFIG_ESP_TLS_USING_MBEDTLS=y # CONFIG_ESP_TLS_USE_SECURE_ELEMENT is not set # CONFIG_ESP_TLS_SERVER is not set # CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS is not set # CONFIG_ESP_TLS_PSK_VERIFICATION is not set # CONFIG_ESP_TLS_INSECURE is not set # end of ESP-TLS # # ESP32-specific # CONFIG_ESP32_REV_MIN_0=y # CONFIG_ESP32_REV_MIN_1 is not set # CONFIG_ESP32_REV_MIN_2 is not set # CONFIG_ESP32_REV_MIN_3 is not set CONFIG_ESP32_REV_MIN=0 CONFIG_ESP32_DPORT_WORKAROUND=y # CONFIG_ESP32_DEFAULT_CPU_FREQ_80 is not set CONFIG_ESP32_DEFAULT_CPU_FREQ_160=y # CONFIG_ESP32_DEFAULT_CPU_FREQ_240 is not set CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ=160 # CONFIG_ESP32_SPIRAM_SUPPORT is not set # CONFIG_ESP32_TRAX is not set CONFIG_ESP32_TRACEMEM_RESERVE_DRAM=0x0 # CONFIG_ESP32_ULP_COPROC_ENABLED is not set CONFIG_ESP32_ULP_COPROC_RESERVE_MEM=0 CONFIG_ESP32_DEBUG_OCDAWARE=y CONFIG_ESP32_BROWNOUT_DET=y CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0=y # CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_1 is not set # CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_2 is not set # CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_3 is not set # CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_4 is not set # CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_5 is not set # CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_6 is not set # CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_7 is not set CONFIG_ESP32_BROWNOUT_DET_LVL=0 CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1=y # CONFIG_ESP32_TIME_SYSCALL_USE_RTC is not set # CONFIG_ESP32_TIME_SYSCALL_USE_FRC1 is not set # CONFIG_ESP32_TIME_SYSCALL_USE_NONE is not set CONFIG_ESP32_RTC_CLK_SRC_INT_RC=y # CONFIG_ESP32_RTC_CLK_SRC_EXT_CRYS is not set # CONFIG_ESP32_RTC_CLK_SRC_EXT_OSC is not set # CONFIG_ESP32_RTC_CLK_SRC_INT_8MD256 is not set CONFIG_ESP32_RTC_CLK_CAL_CYCLES=1024 CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY=2000 CONFIG_ESP32_XTAL_FREQ_40=y # CONFIG_ESP32_XTAL_FREQ_26 is not set # CONFIG_ESP32_XTAL_FREQ_AUTO is not set CONFIG_ESP32_XTAL_FREQ=40 # CONFIG_ESP32_DISABLE_BASIC_ROM_CONSOLE is not set # CONFIG_ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS is not set # CONFIG_ESP32_COMPATIBLE_PRE_V3_1_BOOTLOADERS is not set # CONFIG_ESP32_USE_FIXED_STATIC_RAM_SIZE is not set CONFIG_ESP32_DPORT_DIS_INTERRUPT_LVL=5 # end of ESP32-specific # # ADC-Calibration # CONFIG_ADC_CAL_EFUSE_TP_ENABLE=y CONFIG_ADC_CAL_EFUSE_VREF_ENABLE=y CONFIG_ADC_CAL_LUT_ENABLE=y # end of ADC-Calibration # # Common ESP-related # CONFIG_ESP_ERR_TO_NAME_LOOKUP=y # end of Common ESP-related # # Ethernet # CONFIG_ETH_ENABLED=y CONFIG_ETH_USE_ESP32_EMAC=y CONFIG_ETH_PHY_INTERFACE_RMII=y CONFIG_ETH_RMII_CLK_INPUT=y # CONFIG_ETH_RMII_CLK_OUTPUT is not set CONFIG_ETH_RMII_CLK_IN_GPIO=0 CONFIG_ETH_DMA_BUFFER_SIZE=512 CONFIG_ETH_DMA_RX_BUFFER_NUM=10 CONFIG_ETH_DMA_TX_BUFFER_NUM=10 CONFIG_ETH_USE_SPI_ETHERNET=y # CONFIG_ETH_SPI_ETHERNET_DM9051 is not set # CONFIG_ETH_SPI_ETHERNET_W5500 is not set # CONFIG_ETH_SPI_ETHERNET_KSZ8851SNL is not set # CONFIG_ETH_USE_OPENETH is not set # end of Ethernet # # Event Loop Library # # CONFIG_ESP_EVENT_LOOP_PROFILING is not set CONFIG_ESP_EVENT_POST_FROM_ISR=y CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR=y # end of Event Loop Library # # GDB Stub # # end of GDB Stub # # ESP HTTP client # CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS=y # CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH is not set # CONFIG_ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH is not set # end of ESP HTTP client # # HTTP Server # CONFIG_HTTPD_MAX_REQ_HDR_LEN=512 CONFIG_HTTPD_MAX_URI_LEN=512 CONFIG_HTTPD_ERR_RESP_NO_DELAY=y CONFIG_HTTPD_PURGE_BUF_LEN=32 # CONFIG_HTTPD_LOG_PURGE_DATA is not set # CONFIG_HTTPD_WS_SUPPORT is not set # end of HTTP Server # # ESP HTTPS OTA # # CONFIG_OTA_ALLOW_HTTP is not set # end of ESP HTTPS OTA # # ESP HTTPS server # # CONFIG_ESP_HTTPS_SERVER_ENABLE is not set # end of ESP HTTPS server # # Hardware Settings # # # MAC Config # CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA=y CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP=y CONFIG_ESP_MAC_ADDR_UNIVERSE_BT=y CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH=y # CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_TWO is not set CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR=y CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES=4 # end of MAC Config # # Sleep Config # CONFIG_ESP_SLEEP_POWER_DOWN_FLASH=y CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND=y # CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND is not set # CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND is not set # end of Sleep Config # end of Hardware Settings # # LCD and Touch Panel # # # LCD Peripheral Configuration # CONFIG_LCD_PANEL_IO_FORMAT_BUF_SIZE=32 # end of LCD Peripheral Configuration # end of LCD and Touch Panel # # ESP NETIF Adapter # CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL=120 CONFIG_ESP_NETIF_TCPIP_LWIP=y # CONFIG_ESP_NETIF_LOOPBACK is not set CONFIG_ESP_NETIF_TCPIP_ADAPTER_COMPATIBLE_LAYER=y # CONFIG_ESP_NETIF_L2_TAP is not set # end of ESP NETIF Adapter # # PHY # CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE=y # CONFIG_ESP_PHY_INIT_DATA_IN_PARTITION is not set CONFIG_ESP_PHY_MAX_WIFI_TX_POWER=20 CONFIG_ESP_PHY_MAX_TX_POWER=20 CONFIG_ESP_PHY_REDUCE_TX_POWER=y # end of PHY # # Power Management # # CONFIG_PM_ENABLE is not set # end of Power Management # # ESP System Settings # # CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT is not set CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT=y # CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT is not set # CONFIG_ESP_SYSTEM_PANIC_GDBSTUB is not set # CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME is not set # # Memory protection # # end of Memory protection CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE=32 CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE=2304 CONFIG_ESP_MAIN_TASK_STACK_SIZE=3584 CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0=y # CONFIG_ESP_MAIN_TASK_AFFINITY_CPU1 is not set # CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY is not set CONFIG_ESP_MAIN_TASK_AFFINITY=0x0 CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE=2048 CONFIG_ESP_CONSOLE_UART_DEFAULT=y # CONFIG_ESP_CONSOLE_UART_CUSTOM is not set # CONFIG_ESP_CONSOLE_NONE is not set CONFIG_ESP_CONSOLE_UART=y CONFIG_ESP_CONSOLE_MULTIPLE_UART=y CONFIG_ESP_CONSOLE_UART_NUM=0 CONFIG_ESP_CONSOLE_UART_BAUDRATE=115200 CONFIG_ESP_INT_WDT=y CONFIG_ESP_INT_WDT_TIMEOUT_MS=300 CONFIG_ESP_INT_WDT_CHECK_CPU1=y CONFIG_ESP_TASK_WDT=y # CONFIG_ESP_TASK_WDT_PANIC is not set CONFIG_ESP_TASK_WDT_TIMEOUT_S=5 CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0=y CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1=y # CONFIG_ESP_PANIC_HANDLER_IRAM is not set # CONFIG_ESP_DEBUG_STUBS_ENABLE is not set CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_5=y # end of ESP System Settings # # IPC (Inter-Processor Call) # CONFIG_ESP_IPC_TASK_STACK_SIZE=1024 CONFIG_ESP_IPC_USES_CALLERS_PRIORITY=y CONFIG_ESP_IPC_ISR_ENABLE=y # end of IPC (Inter-Processor Call) # # High resolution timer (esp_timer) # # CONFIG_ESP_TIMER_PROFILING is not set CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER=y CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER=y CONFIG_ESP_TIMER_TASK_STACK_SIZE=3584 CONFIG_ESP_TIMER_INTERRUPT_LEVEL=1 # CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD is not set # CONFIG_ESP_TIMER_IMPL_FRC2 is not set CONFIG_ESP_TIMER_IMPL_TG0_LAC=y # end of High resolution timer (esp_timer) # # Wi-Fi # CONFIG_ESP32_WIFI_ENABLED=y CONFIG_ESP32_WIFI_SW_COEXIST_ENABLE=y CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM=10 CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM=32 # CONFIG_ESP32_WIFI_STATIC_TX_BUFFER is not set CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER=y CONFIG_ESP32_WIFI_TX_BUFFER_TYPE=1 CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM=32 # CONFIG_ESP32_WIFI_CSI_ENABLED is not set CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED=y CONFIG_ESP32_WIFI_TX_BA_WIN=6 CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y CONFIG_ESP32_WIFI_RX_BA_WIN=6 CONFIG_ESP32_WIFI_NVS_ENABLED=y CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0=y # CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1 is not set CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN=752 CONFIG_ESP32_WIFI_MGMT_SBUF_NUM=32 CONFIG_ESP32_WIFI_IRAM_OPT=y CONFIG_ESP32_WIFI_RX_IRAM_OPT=y CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE=y # CONFIG_ESP_WIFI_SLP_IRAM_OPT is not set # CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE is not set # CONFIG_ESP_WIFI_GMAC_SUPPORT is not set CONFIG_ESP_WIFI_SOFTAP_SUPPORT=y # end of Wi-Fi # # Core dump # # CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH is not set # CONFIG_ESP_COREDUMP_ENABLE_TO_UART is not set CONFIG_ESP_COREDUMP_ENABLE_TO_NONE=y # end of Core dump # # FAT Filesystem support # CONFIG_FATFS_VOLUME_COUNT=2 # CONFIG_FATFS_CODEPAGE_DYNAMIC is not set CONFIG_FATFS_CODEPAGE_437=y # CONFIG_FATFS_CODEPAGE_720 is not set # CONFIG_FATFS_CODEPAGE_737 is not set # CONFIG_FATFS_CODEPAGE_771 is not set # CONFIG_FATFS_CODEPAGE_775 is not set # CONFIG_FATFS_CODEPAGE_850 is not set # CONFIG_FATFS_CODEPAGE_852 is not set # CONFIG_FATFS_CODEPAGE_855 is not set # CONFIG_FATFS_CODEPAGE_857 is not set # CONFIG_FATFS_CODEPAGE_860 is not set # CONFIG_FATFS_CODEPAGE_861 is not set # CONFIG_FATFS_CODEPAGE_862 is not set # CONFIG_FATFS_CODEPAGE_863 is not set # CONFIG_FATFS_CODEPAGE_864 is not set # CONFIG_FATFS_CODEPAGE_865 is not set # CONFIG_FATFS_CODEPAGE_866 is not set # CONFIG_FATFS_CODEPAGE_869 is not set # CONFIG_FATFS_CODEPAGE_932 is not set # CONFIG_FATFS_CODEPAGE_936 is not set # CONFIG_FATFS_CODEPAGE_949 is not set # CONFIG_FATFS_CODEPAGE_950 is not set CONFIG_FATFS_CODEPAGE=437 CONFIG_FATFS_LFN_NONE=y # CONFIG_FATFS_LFN_HEAP is not set # CONFIG_FATFS_LFN_STACK is not set CONFIG_FATFS_FS_LOCK=0 CONFIG_FATFS_TIMEOUT_MS=10000 CONFIG_FATFS_PER_FILE_CACHE=y # CONFIG_FATFS_USE_FASTSEEK is not set # end of FAT Filesystem support # # Modbus configuration # CONFIG_FMB_COMM_MODE_TCP_EN=y CONFIG_FMB_TCP_PORT_DEFAULT=502 CONFIG_FMB_TCP_PORT_MAX_CONN=5 CONFIG_FMB_TCP_CONNECTION_TOUT_SEC=20 CONFIG_FMB_COMM_MODE_RTU_EN=y CONFIG_FMB_COMM_MODE_ASCII_EN=y CONFIG_FMB_MASTER_TIMEOUT_MS_RESPOND=150 CONFIG_FMB_MASTER_DELAY_MS_CONVERT=200 CONFIG_FMB_QUEUE_LENGTH=20 CONFIG_FMB_PORT_TASK_STACK_SIZE=4096 CONFIG_FMB_SERIAL_BUF_SIZE=256 CONFIG_FMB_SERIAL_ASCII_BITS_PER_SYMB=8 CONFIG_FMB_SERIAL_ASCII_TIMEOUT_RESPOND_MS=1000 CONFIG_FMB_PORT_TASK_PRIO=10 # CONFIG_FMB_PORT_TASK_AFFINITY_NO_AFFINITY is not set CONFIG_FMB_PORT_TASK_AFFINITY_CPU0=y # CONFIG_FMB_PORT_TASK_AFFINITY_CPU1 is not set CONFIG_FMB_PORT_TASK_AFFINITY=0x0 CONFIG_FMB_CONTROLLER_SLAVE_ID_SUPPORT=y CONFIG_FMB_CONTROLLER_SLAVE_ID=0x00112233 CONFIG_FMB_CONTROLLER_NOTIFY_TIMEOUT=20 CONFIG_FMB_CONTROLLER_NOTIFY_QUEUE_SIZE=20 CONFIG_FMB_CONTROLLER_STACK_SIZE=4096 CONFIG_FMB_EVENT_QUEUE_TIMEOUT=20 # CONFIG_FMB_TIMER_PORT_ENABLED is not set # CONFIG_FMB_TIMER_USE_ISR_DISPATCH_METHOD is not set # end of Modbus configuration # # FreeRTOS # # CONFIG_FREERTOS_UNICORE is not set CONFIG_FREERTOS_NO_AFFINITY=0x7FFFFFFF CONFIG_FREERTOS_TICK_SUPPORT_CORETIMER=y CONFIG_FREERTOS_CORETIMER_0=y # CONFIG_FREERTOS_CORETIMER_1 is not set CONFIG_FREERTOS_SYSTICK_USES_CCOUNT=y CONFIG_FREERTOS_HZ=100 CONFIG_FREERTOS_ASSERT_ON_UNTESTED_FUNCTION=y # CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE is not set # CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL is not set CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY=y # CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK is not set CONFIG_FREERTOS_INTERRUPT_BACKTRACE=y CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS=1 CONFIG_FREERTOS_ASSERT_FAIL_ABORT=y # CONFIG_FREERTOS_ASSERT_FAIL_PRINT_CONTINUE is not set # CONFIG_FREERTOS_ASSERT_DISABLE is not set CONFIG_FREERTOS_IDLE_TASK_STACKSIZE=1536 CONFIG_FREERTOS_ISR_STACKSIZE=1536 # CONFIG_FREERTOS_LEGACY_HOOKS is not set CONFIG_FREERTOS_MAX_TASK_NAME_LEN=16 CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION=y # CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP is not set CONFIG_FREERTOS_TIMER_TASK_PRIORITY=1 CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH=2048 CONFIG_FREERTOS_TIMER_QUEUE_LENGTH=10 CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE=0 # CONFIG_FREERTOS_USE_TRACE_FACILITY is not set # CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS is not set CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER=y CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER=y # CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE is not set # CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH is not set CONFIG_FREERTOS_DEBUG_OCDAWARE=y # CONFIG_FREERTOS_FPU_IN_ISR is not set CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT=y # CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH is not set # end of FreeRTOS # # Hardware Abstraction Layer (HAL) and Low Level (LL) # CONFIG_HAL_ASSERTION_EQUALS_SYSTEM=y # CONFIG_HAL_ASSERTION_DISABLE is not set # CONFIG_HAL_ASSERTION_SILIENT is not set # CONFIG_HAL_ASSERTION_ENABLE is not set CONFIG_HAL_DEFAULT_ASSERTION_LEVEL=2 # end of Hardware Abstraction Layer (HAL) and Low Level (LL) # # Heap memory debugging # CONFIG_HEAP_POISONING_DISABLED=y # CONFIG_HEAP_POISONING_LIGHT is not set # CONFIG_HEAP_POISONING_COMPREHENSIVE is not set CONFIG_HEAP_TRACING_OFF=y # CONFIG_HEAP_TRACING_STANDALONE is not set # CONFIG_HEAP_TRACING_TOHOST is not set # CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS is not set # end of Heap memory debugging # # jsmn # # CONFIG_JSMN_PARENT_LINKS is not set # CONFIG_JSMN_STRICT is not set # end of jsmn # # libsodium # # end of libsodium # # Log output # # CONFIG_LOG_DEFAULT_LEVEL_NONE is not set # CONFIG_LOG_DEFAULT_LEVEL_ERROR is not set # CONFIG_LOG_DEFAULT_LEVEL_WARN is not set CONFIG_LOG_DEFAULT_LEVEL_INFO=y # CONFIG_LOG_DEFAULT_LEVEL_DEBUG is not set # CONFIG_LOG_DEFAULT_LEVEL_VERBOSE is not set CONFIG_LOG_DEFAULT_LEVEL=3 CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT=y # CONFIG_LOG_MAXIMUM_LEVEL_DEBUG is not set # CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE is not set CONFIG_LOG_MAXIMUM_LEVEL=3 CONFIG_LOG_COLORS=y CONFIG_LOG_TIMESTAMP_SOURCE_RTOS=y # CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM is not set # end of Log output # # LWIP # CONFIG_LWIP_LOCAL_HOSTNAME="espressif" # CONFIG_LWIP_NETIF_API is not set # CONFIG_LWIP_TCPIP_CORE_LOCKING is not set CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES=y # CONFIG_LWIP_L2_TO_L3_COPY is not set # CONFIG_LWIP_IRAM_OPTIMIZATION is not set CONFIG_LWIP_TIMERS_ONDEMAND=y CONFIG_LWIP_MAX_SOCKETS=10 # CONFIG_LWIP_USE_ONLY_LWIP_SELECT is not set # CONFIG_LWIP_SO_LINGER is not set CONFIG_LWIP_SO_REUSE=y CONFIG_LWIP_SO_REUSE_RXTOALL=y # CONFIG_LWIP_SO_RCVBUF is not set # CONFIG_LWIP_NETBUF_RECVINFO is not set CONFIG_LWIP_IP4_FRAG=y CONFIG_LWIP_IP6_FRAG=y # CONFIG_LWIP_IP4_REASSEMBLY is not set # CONFIG_LWIP_IP6_REASSEMBLY is not set # CONFIG_LWIP_IP_FORWARD is not set # CONFIG_LWIP_STATS is not set # CONFIG_LWIP_ETHARP_TRUST_IP_MAC is not set CONFIG_LWIP_ESP_GRATUITOUS_ARP=y CONFIG_LWIP_GARP_TMR_INTERVAL=60 CONFIG_LWIP_TCPIP_RECVMBOX_SIZE=32 CONFIG_LWIP_DHCP_DOES_ARP_CHECK=y # CONFIG_LWIP_DHCP_DISABLE_CLIENT_ID is not set CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID=y # CONFIG_LWIP_DHCP_RESTORE_LAST_IP is not set CONFIG_LWIP_DHCP_OPTIONS_LEN=68 # # DHCP server # CONFIG_LWIP_DHCPS=y CONFIG_LWIP_DHCPS_LEASE_UNIT=60 CONFIG_LWIP_DHCPS_MAX_STATION_NUM=8 # end of DHCP server # CONFIG_LWIP_AUTOIP is not set CONFIG_LWIP_IPV6=y # CONFIG_LWIP_IPV6_AUTOCONFIG is not set CONFIG_LWIP_IPV6_NUM_ADDRESSES=3 # CONFIG_LWIP_IPV6_FORWARD is not set # CONFIG_LWIP_NETIF_STATUS_CALLBACK is not set CONFIG_LWIP_NETIF_LOOPBACK=y CONFIG_LWIP_LOOPBACK_MAX_PBUFS=8 # # TCP # CONFIG_LWIP_MAX_ACTIVE_TCP=16 CONFIG_LWIP_MAX_LISTENING_TCP=16 CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION=y CONFIG_LWIP_TCP_MAXRTX=12 CONFIG_LWIP_TCP_SYNMAXRTX=12 CONFIG_LWIP_TCP_MSS=1440 CONFIG_LWIP_TCP_TMR_INTERVAL=250 CONFIG_LWIP_TCP_MSL=60000 CONFIG_LWIP_TCP_SND_BUF_DEFAULT=5744 CONFIG_LWIP_TCP_WND_DEFAULT=5744 CONFIG_LWIP_TCP_RECVMBOX_SIZE=6 CONFIG_LWIP_TCP_QUEUE_OOSEQ=y # CONFIG_LWIP_TCP_SACK_OUT is not set # CONFIG_LWIP_TCP_KEEP_CONNECTION_WHEN_IP_CHANGES is not set CONFIG_LWIP_TCP_OVERSIZE_MSS=y # CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS is not set # CONFIG_LWIP_TCP_OVERSIZE_DISABLE is not set CONFIG_LWIP_TCP_RTO_TIME=1500 # end of TCP # # UDP # CONFIG_LWIP_MAX_UDP_PCBS=16 CONFIG_LWIP_UDP_RECVMBOX_SIZE=6 # end of UDP # # Checksums # # CONFIG_LWIP_CHECKSUM_CHECK_IP is not set # CONFIG_LWIP_CHECKSUM_CHECK_UDP is not set CONFIG_LWIP_CHECKSUM_CHECK_ICMP=y # end of Checksums CONFIG_LWIP_TCPIP_TASK_STACK_SIZE=3072 CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY=y # CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0 is not set # CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU1 is not set CONFIG_LWIP_TCPIP_TASK_AFFINITY=0x7FFFFFFF # CONFIG_LWIP_PPP_SUPPORT is not set CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE=3 CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS=5 # CONFIG_LWIP_SLIP_SUPPORT is not set # # ICMP # CONFIG_LWIP_ICMP=y # CONFIG_LWIP_MULTICAST_PING is not set # CONFIG_LWIP_BROADCAST_PING is not set # end of ICMP # # LWIP RAW API # CONFIG_LWIP_MAX_RAW_PCBS=16 # end of LWIP RAW API # # SNTP # CONFIG_LWIP_SNTP_MAX_SERVERS=1 # CONFIG_LWIP_DHCP_GET_NTP_SRV is not set CONFIG_LWIP_SNTP_UPDATE_DELAY=3600000 # end of SNTP CONFIG_LWIP_ESP_LWIP_ASSERT=y # # Hooks # # CONFIG_LWIP_HOOK_TCP_ISN_NONE is not set CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT=y # CONFIG_LWIP_HOOK_TCP_ISN_CUSTOM is not set CONFIG_LWIP_HOOK_IP6_ROUTE_NONE=y # CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT is not set # CONFIG_LWIP_HOOK_IP6_ROUTE_CUSTOM is not set CONFIG_LWIP_HOOK_ND6_GET_GW_NONE=y # CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT is not set # CONFIG_LWIP_HOOK_ND6_GET_GW_CUSTOM is not set CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE=y # CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT is not set # CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM is not set # end of Hooks # CONFIG_LWIP_DEBUG is not set # end of LWIP # # mbedTLS # CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC=y # CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC is not set # CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC is not set CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN=y CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN=16384 CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN=4096 # CONFIG_MBEDTLS_DYNAMIC_BUFFER is not set # CONFIG_MBEDTLS_DEBUG is not set # # Certificate Bundle # CONFIG_MBEDTLS_CERTIFICATE_BUNDLE=y CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL=y # CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN is not set # CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE is not set # CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE is not set # end of Certificate Bundle # CONFIG_MBEDTLS_ECP_RESTARTABLE is not set # CONFIG_MBEDTLS_CMAC_C is not set CONFIG_MBEDTLS_HARDWARE_AES=y CONFIG_MBEDTLS_HARDWARE_MPI=y CONFIG_MBEDTLS_HARDWARE_SHA=y CONFIG_MBEDTLS_ROM_MD5=y # CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN is not set # CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY is not set CONFIG_MBEDTLS_HAVE_TIME=y # CONFIG_MBEDTLS_HAVE_TIME_DATE is not set CONFIG_MBEDTLS_ECDSA_DETERMINISTIC=y CONFIG_MBEDTLS_SHA512_C=y CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT=y # CONFIG_MBEDTLS_TLS_SERVER_ONLY is not set # CONFIG_MBEDTLS_TLS_CLIENT_ONLY is not set # CONFIG_MBEDTLS_TLS_DISABLED is not set CONFIG_MBEDTLS_TLS_SERVER=y CONFIG_MBEDTLS_TLS_CLIENT=y CONFIG_MBEDTLS_TLS_ENABLED=y # # TLS Key Exchange Methods # # CONFIG_MBEDTLS_PSK_MODES is not set CONFIG_MBEDTLS_KEY_EXCHANGE_RSA=y CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE=y CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA=y CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA=y CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA=y CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA=y # end of TLS Key Exchange Methods CONFIG_MBEDTLS_SSL_RENEGOTIATION=y # CONFIG_MBEDTLS_SSL_PROTO_SSL3 is not set CONFIG_MBEDTLS_SSL_PROTO_TLS1=y CONFIG_MBEDTLS_SSL_PROTO_TLS1_1=y CONFIG_MBEDTLS_SSL_PROTO_TLS1_2=y # CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1 is not set # CONFIG_MBEDTLS_SSL_PROTO_DTLS is not set CONFIG_MBEDTLS_SSL_ALPN=y CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS=y CONFIG_MBEDTLS_X509_CHECK_KEY_USAGE=y CONFIG_MBEDTLS_X509_CHECK_EXTENDED_KEY_USAGE=y CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS=y # # Symmetric Ciphers # CONFIG_MBEDTLS_AES_C=y # CONFIG_MBEDTLS_CAMELLIA_C is not set # CONFIG_MBEDTLS_DES_C is not set CONFIG_MBEDTLS_RC4_DISABLED=y # CONFIG_MBEDTLS_RC4_ENABLED_NO_DEFAULT is not set # CONFIG_MBEDTLS_RC4_ENABLED is not set # CONFIG_MBEDTLS_BLOWFISH_C is not set # CONFIG_MBEDTLS_XTEA_C is not set CONFIG_MBEDTLS_CCM_C=y CONFIG_MBEDTLS_GCM_C=y # CONFIG_MBEDTLS_NIST_KW_C is not set # end of Symmetric Ciphers # CONFIG_MBEDTLS_RIPEMD160_C is not set # # Certificates # CONFIG_MBEDTLS_PEM_PARSE_C=y CONFIG_MBEDTLS_PEM_WRITE_C=y CONFIG_MBEDTLS_X509_CRL_PARSE_C=y CONFIG_MBEDTLS_X509_CSR_PARSE_C=y # end of Certificates CONFIG_MBEDTLS_ECP_C=y # CONFIG_MBEDTLS_DHM_C is not set CONFIG_MBEDTLS_ECDH_C=y CONFIG_MBEDTLS_ECDSA_C=y # CONFIG_MBEDTLS_ECJPAKE_C is not set CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED=y CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED=y CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED=y CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED=y CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED=y CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED=y CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED=y CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED=y CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED=y CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED=y CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED=y CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED=y CONFIG_MBEDTLS_ECP_NIST_OPTIM=y # CONFIG_MBEDTLS_POLY1305_C is not set # CONFIG_MBEDTLS_CHACHA20_C is not set # CONFIG_MBEDTLS_HKDF_C is not set # CONFIG_MBEDTLS_THREADING_C is not set # CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI is not set # CONFIG_MBEDTLS_SECURITY_RISKS is not set # end of mbedTLS # # mDNS # CONFIG_MDNS_MAX_SERVICES=10 CONFIG_MDNS_TASK_PRIORITY=1 CONFIG_MDNS_TASK_STACK_SIZE=4096 # CONFIG_MDNS_TASK_AFFINITY_NO_AFFINITY is not set CONFIG_MDNS_TASK_AFFINITY_CPU0=y # CONFIG_MDNS_TASK_AFFINITY_CPU1 is not set CONFIG_MDNS_TASK_AFFINITY=0x0 CONFIG_MDNS_SERVICE_ADD_TIMEOUT_MS=2000 # CONFIG_MDNS_STRICT_MODE is not set CONFIG_MDNS_TIMER_PERIOD_MS=100 # CONFIG_MDNS_NETWORKING_SOCKET is not set CONFIG_MDNS_MULTIPLE_INSTANCE=y # end of mDNS # # ESP-MQTT Configurations # CONFIG_MQTT_PROTOCOL_311=y CONFIG_MQTT_TRANSPORT_SSL=y CONFIG_MQTT_TRANSPORT_WEBSOCKET=y CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE=y # CONFIG_MQTT_MSG_ID_INCREMENTAL is not set # CONFIG_MQTT_SKIP_PUBLISH_IF_DISCONNECTED is not set # CONFIG_MQTT_REPORT_DELETED_MESSAGES is not set # CONFIG_MQTT_USE_CUSTOM_CONFIG is not set # CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED is not set # CONFIG_MQTT_CUSTOM_OUTBOX is not set # end of ESP-MQTT Configurations # # Newlib # CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF=y # CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF is not set # CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR is not set # CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF is not set # CONFIG_NEWLIB_STDIN_LINE_ENDING_LF is not set CONFIG_NEWLIB_STDIN_LINE_ENDING_CR=y # CONFIG_NEWLIB_NANO_FORMAT is not set # end of Newlib # # NVS # # end of NVS # # OpenSSL # # CONFIG_OPENSSL_DEBUG is not set CONFIG_OPENSSL_ERROR_STACK=y # CONFIG_OPENSSL_ASSERT_DO_NOTHING is not set CONFIG_OPENSSL_ASSERT_EXIT=y # end of OpenSSL # # OpenThread # # CONFIG_OPENTHREAD_ENABLED is not set # end of OpenThread # # PThreads # CONFIG_PTHREAD_TASK_PRIO_DEFAULT=5 CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT=3072 CONFIG_PTHREAD_STACK_MIN=768 CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY=y # CONFIG_PTHREAD_DEFAULT_CORE_0 is not set # CONFIG_PTHREAD_DEFAULT_CORE_1 is not set CONFIG_PTHREAD_TASK_CORE_DEFAULT=-1 CONFIG_PTHREAD_TASK_NAME_DEFAULT="pthread" # end of PThreads # # SPI Flash driver # # CONFIG_SPI_FLASH_VERIFY_WRITE is not set # CONFIG_SPI_FLASH_ENABLE_COUNTERS is not set CONFIG_SPI_FLASH_ROM_DRIVER_PATCH=y CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS=y # CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS is not set # CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED is not set # CONFIG_SPI_FLASH_USE_LEGACY_IMPL is not set # CONFIG_SPI_FLASH_SHARE_SPI1_BUS is not set # CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE is not set CONFIG_SPI_FLASH_YIELD_DURING_ERASE=y CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS=20 CONFIG_SPI_FLASH_ERASE_YIELD_TICKS=1 CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE=8192 # CONFIG_SPI_FLASH_SIZE_OVERRIDE is not set # CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED is not set # CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST is not set # # Auto-detect flash chips # CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP=y CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP=y CONFIG_SPI_FLASH_SUPPORT_GD_CHIP=y CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP=y # end of Auto-detect flash chips CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE=y # end of SPI Flash driver # # SPIFFS Configuration # CONFIG_SPIFFS_MAX_PARTITIONS=3 # # SPIFFS Cache Configuration # CONFIG_SPIFFS_CACHE=y CONFIG_SPIFFS_CACHE_WR=y # CONFIG_SPIFFS_CACHE_STATS is not set # end of SPIFFS Cache Configuration CONFIG_SPIFFS_PAGE_CHECK=y CONFIG_SPIFFS_GC_MAX_RUNS=10 # CONFIG_SPIFFS_GC_STATS is not set CONFIG_SPIFFS_PAGE_SIZE=256 CONFIG_SPIFFS_OBJ_NAME_LEN=32 # CONFIG_SPIFFS_FOLLOW_SYMLINKS is not set CONFIG_SPIFFS_USE_MAGIC=y CONFIG_SPIFFS_USE_MAGIC_LENGTH=y CONFIG_SPIFFS_META_LENGTH=4 CONFIG_SPIFFS_USE_MTIME=y # # Debug Configuration # # CONFIG_SPIFFS_DBG is not set # CONFIG_SPIFFS_API_DBG is not set # CONFIG_SPIFFS_GC_DBG is not set # CONFIG_SPIFFS_CACHE_DBG is not set # CONFIG_SPIFFS_CHECK_DBG is not set # CONFIG_SPIFFS_TEST_VISUALISATION is not set # end of Debug Configuration # end of SPIFFS Configuration # # TCP Transport # # # Websocket # CONFIG_WS_TRANSPORT=y CONFIG_WS_BUFFER_SIZE=1024 # end of Websocket # end of TCP Transport # # Unity unit testing library # CONFIG_UNITY_ENABLE_FLOAT=y CONFIG_UNITY_ENABLE_DOUBLE=y # CONFIG_UNITY_ENABLE_64BIT is not set # CONFIG_UNITY_ENABLE_COLOR is not set CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER=y # CONFIG_UNITY_ENABLE_FIXTURE is not set # CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL is not set # end of Unity unit testing library # # Virtual file system # CONFIG_VFS_SUPPORT_IO=y CONFIG_VFS_SUPPORT_DIR=y CONFIG_VFS_SUPPORT_SELECT=y CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT=y CONFIG_VFS_SUPPORT_TERMIOS=y # # Host File System I/O (Semihosting) # CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS=1 CONFIG_VFS_SEMIHOSTFS_HOST_PATH_MAX_LEN=128 # end of Host File System I/O (Semihosting) # end of Virtual file system # # Wear Levelling # # CONFIG_WL_SECTOR_SIZE_512 is not set CONFIG_WL_SECTOR_SIZE_4096=y CONFIG_WL_SECTOR_SIZE=4096 # end of Wear Levelling # # Wi-Fi Provisioning Manager # CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES=16 CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT=30 # CONFIG_WIFI_PROV_BLE_BONDING is not set # end of Wi-Fi Provisioning Manager # # Supplicant # CONFIG_WPA_MBEDTLS_CRYPTO=y # CONFIG_WPA_WAPI_PSK is not set # CONFIG_WPA_SUITE_B_192 is not set # CONFIG_WPA_DEBUG_PRINT is not set # CONFIG_WPA_TESTING_OPTIONS is not set # CONFIG_WPA_WPS_STRICT is not set # CONFIG_WPA_11KV_SUPPORT is not set # end of Supplicant # end of Component config # # Compatibility options # # CONFIG_LEGACY_INCLUDE_COMMON_HEADERS is not set # end of Compatibility options # Deprecated options for backward compatibility CONFIG_TOOLPREFIX="xtensa-esp32-elf-" # CONFIG_LOG_BOOTLOADER_LEVEL_NONE is not set # CONFIG_LOG_BOOTLOADER_LEVEL_ERROR is not set # CONFIG_LOG_BOOTLOADER_LEVEL_WARN is not set CONFIG_LOG_BOOTLOADER_LEVEL_INFO=y # CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG is not set # CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE is not set CONFIG_LOG_BOOTLOADER_LEVEL=3 # CONFIG_APP_ROLLBACK_ENABLE is not set # CONFIG_FLASH_ENCRYPTION_ENABLED is not set # CONFIG_FLASHMODE_QIO is not set # CONFIG_FLASHMODE_QOUT is not set CONFIG_FLASHMODE_DIO=y # CONFIG_FLASHMODE_DOUT is not set # CONFIG_MONITOR_BAUD_9600B is not set # CONFIG_MONITOR_BAUD_57600B is not set CONFIG_MONITOR_BAUD_115200B=y # CONFIG_MONITOR_BAUD_230400B is not set # CONFIG_MONITOR_BAUD_921600B is not set # CONFIG_MONITOR_BAUD_2MB is not set # CONFIG_MONITOR_BAUD_OTHER is not set CONFIG_MONITOR_BAUD_OTHER_VAL=115200 CONFIG_MONITOR_BAUD=115200 CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG=y # CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE is not set CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED=y # CONFIG_OPTIMIZATION_ASSERTIONS_SILENT is not set # CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED is not set CONFIG_OPTIMIZATION_ASSERTION_LEVEL=2 # CONFIG_CXX_EXCEPTIONS is not set CONFIG_STACK_CHECK_NONE=y # CONFIG_STACK_CHECK_NORM is not set # CONFIG_STACK_CHECK_STRONG is not set # CONFIG_STACK_CHECK_ALL is not set # CONFIG_WARN_WRITE_STRINGS is not set # CONFIG_DISABLE_GCC8_WARNINGS is not set # CONFIG_ESP32_APPTRACE_DEST_TRAX is not set CONFIG_ESP32_APPTRACE_DEST_NONE=y CONFIG_ESP32_APPTRACE_LOCK_ENABLE=y # CONFIG_BTDM_CONTROLLER_MODE_BLE_ONLY is not set CONFIG_BTDM_CONTROLLER_MODE_BR_EDR_ONLY=y # CONFIG_BTDM_CONTROLLER_MODE_BTDM is not set CONFIG_BTDM_CONTROLLER_BR_EDR_MAX_ACL_CONN=2 CONFIG_BTDM_CONTROLLER_BR_EDR_MAX_SYNC_CONN=0 CONFIG_BTDM_CONTROLLER_BLE_MAX_CONN_EFF=0 CONFIG_BTDM_CONTROLLER_BR_EDR_MAX_ACL_CONN_EFF=2 CONFIG_BTDM_CONTROLLER_BR_EDR_MAX_SYNC_CONN_EFF=0 CONFIG_BTDM_CONTROLLER_PINNED_TO_CORE=0 CONFIG_BTDM_CONTROLLER_HCI_MODE_VHCI=y # CONFIG_BTDM_CONTROLLER_HCI_MODE_UART_H4 is not set CONFIG_BTDM_CONTROLLER_MODEM_SLEEP=y CONFIG_BLUEDROID_ENABLED=y # CONFIG_NIMBLE_ENABLED is not set CONFIG_BTC_TASK_STACK_SIZE=3072 CONFIG_BLUEDROID_PINNED_TO_CORE_0=y # CONFIG_BLUEDROID_PINNED_TO_CORE_1 is not set CONFIG_BLUEDROID_PINNED_TO_CORE=0 CONFIG_BTU_TASK_STACK_SIZE=4096 # CONFIG_BLUEDROID_MEM_DEBUG is not set CONFIG_CLASSIC_BT_ENABLED=y # CONFIG_A2DP_ENABLE is not set # CONFIG_HFP_ENABLE is not set CONFIG_GATTS_ENABLE=y # CONFIG_GATTS_SEND_SERVICE_CHANGE_MANUAL is not set CONFIG_GATTS_SEND_SERVICE_CHANGE_AUTO=y CONFIG_GATTS_SEND_SERVICE_CHANGE_MODE=0 CONFIG_GATTC_ENABLE=y # CONFIG_GATTC_CACHE_NVS_FLASH is not set CONFIG_BLE_SMP_ENABLE=y # CONFIG_SMP_SLAVE_CON_PARAMS_UPD_ENABLE is not set # CONFIG_HCI_TRACE_LEVEL_NONE is not set # CONFIG_HCI_TRACE_LEVEL_ERROR is not set CONFIG_HCI_TRACE_LEVEL_WARNING=y # CONFIG_HCI_TRACE_LEVEL_API is not set # CONFIG_HCI_TRACE_LEVEL_EVENT is not set # CONFIG_HCI_TRACE_LEVEL_DEBUG is not set # CONFIG_HCI_TRACE_LEVEL_VERBOSE is not set CONFIG_HCI_INITIAL_TRACE_LEVEL=2 # CONFIG_BTM_TRACE_LEVEL_NONE is not set # CONFIG_BTM_TRACE_LEVEL_ERROR is not set CONFIG_BTM_TRACE_LEVEL_WARNING=y # CONFIG_BTM_TRACE_LEVEL_API is not set # CONFIG_BTM_TRACE_LEVEL_EVENT is not set # CONFIG_BTM_TRACE_LEVEL_DEBUG is not set # CONFIG_BTM_TRACE_LEVEL_VERBOSE is not set CONFIG_BTM_INITIAL_TRACE_LEVEL=2 # CONFIG_L2CAP_TRACE_LEVEL_NONE is not set # CONFIG_L2CAP_TRACE_LEVEL_ERROR is not set CONFIG_L2CAP_TRACE_LEVEL_WARNING=y # CONFIG_L2CAP_TRACE_LEVEL_API is not set # CONFIG_L2CAP_TRACE_LEVEL_EVENT is not set # CONFIG_L2CAP_TRACE_LEVEL_DEBUG is not set # CONFIG_L2CAP_TRACE_LEVEL_VERBOSE is not set CONFIG_L2CAP_INITIAL_TRACE_LEVEL=2 # CONFIG_RFCOMM_TRACE_LEVEL_NONE is not set # CONFIG_RFCOMM_TRACE_LEVEL_ERROR is not set CONFIG_RFCOMM_TRACE_LEVEL_WARNING=y # CONFIG_RFCOMM_TRACE_LEVEL_API is not set # CONFIG_RFCOMM_TRACE_LEVEL_EVENT is not set # CONFIG_RFCOMM_TRACE_LEVEL_DEBUG is not set # CONFIG_RFCOMM_TRACE_LEVEL_VERBOSE is not set CONFIG_RFCOMM_INITIAL_TRACE_LEVEL=2 # CONFIG_SDP_TRACE_LEVEL_NONE is not set # CONFIG_SDP_TRACE_LEVEL_ERROR is not set CONFIG_SDP_TRACE_LEVEL_WARNING=y # CONFIG_SDP_TRACE_LEVEL_API is not set # CONFIG_SDP_TRACE_LEVEL_EVENT is not set # CONFIG_SDP_TRACE_LEVEL_DEBUG is not set # CONFIG_SDP_TRACE_LEVEL_VERBOSE is not set CONFIG_BTH_LOG_SDP_INITIAL_TRACE_LEVEL=2 # CONFIG_GAP_TRACE_LEVEL_NONE is not set # CONFIG_GAP_TRACE_LEVEL_ERROR is not set CONFIG_GAP_TRACE_LEVEL_WARNING=y # CONFIG_GAP_TRACE_LEVEL_API is not set # CONFIG_GAP_TRACE_LEVEL_EVENT is not set # CONFIG_GAP_TRACE_LEVEL_DEBUG is not set # CONFIG_GAP_TRACE_LEVEL_VERBOSE is not set CONFIG_GAP_INITIAL_TRACE_LEVEL=2 CONFIG_BNEP_INITIAL_TRACE_LEVEL=2 # CONFIG_PAN_TRACE_LEVEL_NONE is not set # CONFIG_PAN_TRACE_LEVEL_ERROR is not set CONFIG_PAN_TRACE_LEVEL_WARNING=y # CONFIG_PAN_TRACE_LEVEL_API is not set # CONFIG_PAN_TRACE_LEVEL_EVENT is not set # CONFIG_PAN_TRACE_LEVEL_DEBUG is not set # CONFIG_PAN_TRACE_LEVEL_VERBOSE is not set CONFIG_PAN_INITIAL_TRACE_LEVEL=2 # CONFIG_A2D_TRACE_LEVEL_NONE is not set # CONFIG_A2D_TRACE_LEVEL_ERROR is not set CONFIG_A2D_TRACE_LEVEL_WARNING=y # CONFIG_A2D_TRACE_LEVEL_API is not set # CONFIG_A2D_TRACE_LEVEL_EVENT is not set # CONFIG_A2D_TRACE_LEVEL_DEBUG is not set # CONFIG_A2D_TRACE_LEVEL_VERBOSE is not set CONFIG_A2D_INITIAL_TRACE_LEVEL=2 # CONFIG_AVDT_TRACE_LEVEL_NONE is not set # CONFIG_AVDT_TRACE_LEVEL_ERROR is not set CONFIG_AVDT_TRACE_LEVEL_WARNING=y # CONFIG_AVDT_TRACE_LEVEL_API is not set # CONFIG_AVDT_TRACE_LEVEL_EVENT is not set # CONFIG_AVDT_TRACE_LEVEL_DEBUG is not set # CONFIG_AVDT_TRACE_LEVEL_VERBOSE is not set CONFIG_AVDT_INITIAL_TRACE_LEVEL=2 # CONFIG_AVCT_TRACE_LEVEL_NONE is not set # CONFIG_AVCT_TRACE_LEVEL_ERROR is not set CONFIG_AVCT_TRACE_LEVEL_WARNING=y # CONFIG_AVCT_TRACE_LEVEL_API is not set # CONFIG_AVCT_TRACE_LEVEL_EVENT is not set # CONFIG_AVCT_TRACE_LEVEL_DEBUG is not set # CONFIG_AVCT_TRACE_LEVEL_VERBOSE is not set CONFIG_AVCT_INITIAL_TRACE_LEVEL=2 # CONFIG_AVRC_TRACE_LEVEL_NONE is not set # CONFIG_AVRC_TRACE_LEVEL_ERROR is not set CONFIG_AVRC_TRACE_LEVEL_WARNING=y # CONFIG_AVRC_TRACE_LEVEL_API is not set # CONFIG_AVRC_TRACE_LEVEL_EVENT is not set # CONFIG_AVRC_TRACE_LEVEL_DEBUG is not set # CONFIG_AVRC_TRACE_LEVEL_VERBOSE is not set CONFIG_AVRC_INITIAL_TRACE_LEVEL=2 # CONFIG_MCA_TRACE_LEVEL_NONE is not set # CONFIG_MCA_TRACE_LEVEL_ERROR is not set CONFIG_MCA_TRACE_LEVEL_WARNING=y # CONFIG_MCA_TRACE_LEVEL_API is not set # CONFIG_MCA_TRACE_LEVEL_EVENT is not set # CONFIG_MCA_TRACE_LEVEL_DEBUG is not set # CONFIG_MCA_TRACE_LEVEL_VERBOSE is not set CONFIG_MCA_INITIAL_TRACE_LEVEL=2 # CONFIG_HID_TRACE_LEVEL_NONE is not set # CONFIG_HID_TRACE_LEVEL_ERROR is not set CONFIG_HID_TRACE_LEVEL_WARNING=y # CONFIG_HID_TRACE_LEVEL_API is not set # CONFIG_HID_TRACE_LEVEL_EVENT is not set # CONFIG_HID_TRACE_LEVEL_DEBUG is not set # CONFIG_HID_TRACE_LEVEL_VERBOSE is not set CONFIG_HID_INITIAL_TRACE_LEVEL=2 # CONFIG_APPL_TRACE_LEVEL_NONE is not set # CONFIG_APPL_TRACE_LEVEL_ERROR is not set CONFIG_APPL_TRACE_LEVEL_WARNING=y # CONFIG_APPL_TRACE_LEVEL_API is not set # CONFIG_APPL_TRACE_LEVEL_EVENT is not set # CONFIG_APPL_TRACE_LEVEL_DEBUG is not set # CONFIG_APPL_TRACE_LEVEL_VERBOSE is not set CONFIG_APPL_INITIAL_TRACE_LEVEL=2 # CONFIG_GATT_TRACE_LEVEL_NONE is not set # CONFIG_GATT_TRACE_LEVEL_ERROR is not set CONFIG_GATT_TRACE_LEVEL_WARNING=y # CONFIG_GATT_TRACE_LEVEL_API is not set # CONFIG_GATT_TRACE_LEVEL_EVENT is not set # CONFIG_GATT_TRACE_LEVEL_DEBUG is not set # CONFIG_GATT_TRACE_LEVEL_VERBOSE is not set CONFIG_GATT_INITIAL_TRACE_LEVEL=2 # CONFIG_SMP_TRACE_LEVEL_NONE is not set # CONFIG_SMP_TRACE_LEVEL_ERROR is not set CONFIG_SMP_TRACE_LEVEL_WARNING=y # CONFIG_SMP_TRACE_LEVEL_API is not set # CONFIG_SMP_TRACE_LEVEL_EVENT is not set # CONFIG_SMP_TRACE_LEVEL_DEBUG is not set # CONFIG_SMP_TRACE_LEVEL_VERBOSE is not set CONFIG_SMP_INITIAL_TRACE_LEVEL=2 # CONFIG_BTIF_TRACE_LEVEL_NONE is not set # CONFIG_BTIF_TRACE_LEVEL_ERROR is not set CONFIG_BTIF_TRACE_LEVEL_WARNING=y # CONFIG_BTIF_TRACE_LEVEL_API is not set # CONFIG_BTIF_TRACE_LEVEL_EVENT is not set # CONFIG_BTIF_TRACE_LEVEL_DEBUG is not set # CONFIG_BTIF_TRACE_LEVEL_VERBOSE is not set CONFIG_BTIF_INITIAL_TRACE_LEVEL=2 # CONFIG_BTC_TRACE_LEVEL_NONE is not set # CONFIG_BTC_TRACE_LEVEL_ERROR is not set CONFIG_BTC_TRACE_LEVEL_WARNING=y # CONFIG_BTC_TRACE_LEVEL_API is not set # CONFIG_BTC_TRACE_LEVEL_EVENT is not set # CONFIG_BTC_TRACE_LEVEL_DEBUG is not set # CONFIG_BTC_TRACE_LEVEL_VERBOSE is not set CONFIG_BTC_INITIAL_TRACE_LEVEL=2 # CONFIG_OSI_TRACE_LEVEL_NONE is not set # CONFIG_OSI_TRACE_LEVEL_ERROR is not set CONFIG_OSI_TRACE_LEVEL_WARNING=y # CONFIG_OSI_TRACE_LEVEL_API is not set # CONFIG_OSI_TRACE_LEVEL_EVENT is not set # CONFIG_OSI_TRACE_LEVEL_DEBUG is not set # CONFIG_OSI_TRACE_LEVEL_VERBOSE is not set CONFIG_OSI_INITIAL_TRACE_LEVEL=2 # CONFIG_BLUFI_TRACE_LEVEL_NONE is not set # CONFIG_BLUFI_TRACE_LEVEL_ERROR is not set CONFIG_BLUFI_TRACE_LEVEL_WARNING=y # CONFIG_BLUFI_TRACE_LEVEL_API is not set # CONFIG_BLUFI_TRACE_LEVEL_EVENT is not set # CONFIG_BLUFI_TRACE_LEVEL_DEBUG is not set # CONFIG_BLUFI_TRACE_LEVEL_VERBOSE is not set CONFIG_BLUFI_INITIAL_TRACE_LEVEL=2 # CONFIG_BLE_HOST_QUEUE_CONGESTION_CHECK is not set CONFIG_SMP_ENABLE=y CONFIG_BLE_ESTABLISH_LINK_CONNECTION_TIMEOUT=30 CONFIG_ADC2_DISABLE_DAC=y # CONFIG_SPIRAM_SUPPORT is not set CONFIG_TRACEMEM_RESERVE_DRAM=0x0 # CONFIG_ULP_COPROC_ENABLED is not set CONFIG_ULP_COPROC_RESERVE_MEM=0 CONFIG_BROWNOUT_DET=y CONFIG_BROWNOUT_DET_LVL_SEL_0=y # CONFIG_BROWNOUT_DET_LVL_SEL_1 is not set # CONFIG_BROWNOUT_DET_LVL_SEL_2 is not set # CONFIG_BROWNOUT_DET_LVL_SEL_3 is not set # CONFIG_BROWNOUT_DET_LVL_SEL_4 is not set # CONFIG_BROWNOUT_DET_LVL_SEL_5 is not set # CONFIG_BROWNOUT_DET_LVL_SEL_6 is not set # CONFIG_BROWNOUT_DET_LVL_SEL_7 is not set CONFIG_BROWNOUT_DET_LVL=0 CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC=y # CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL is not set # CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_OSC is not set # CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_8MD256 is not set # CONFIG_DISABLE_BASIC_ROM_CONSOLE is not set # CONFIG_COMPATIBLE_PRE_V2_1_BOOTLOADERS is not set # CONFIG_EVENT_LOOP_PROFILING is not set CONFIG_POST_EVENTS_FROM_ISR=y CONFIG_POST_EVENTS_FROM_IRAM_ISR=y # CONFIG_TWO_UNIVERSAL_MAC_ADDRESS is not set CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS=y CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS=4 CONFIG_ESP_SYSTEM_PD_FLASH=y # CONFIG_ESP32C3_LIGHTSLEEP_GPIO_RESET_WORKAROUND is not set CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE=y # CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION is not set CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER=20 CONFIG_ESP32_PHY_MAX_TX_POWER=20 CONFIG_ESP32_REDUCE_PHY_TX_POWER=y # CONFIG_ESP32S2_PANIC_PRINT_HALT is not set CONFIG_ESP32S2_PANIC_PRINT_REBOOT=y # CONFIG_ESP32S2_PANIC_SILENT_REBOOT is not set # CONFIG_ESP32S2_PANIC_GDBSTUB is not set CONFIG_SYSTEM_EVENT_QUEUE_SIZE=32 CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE=2304 CONFIG_MAIN_TASK_STACK_SIZE=3584 CONFIG_CONSOLE_UART_DEFAULT=y # CONFIG_CONSOLE_UART_CUSTOM is not set # CONFIG_ESP_CONSOLE_UART_NONE is not set CONFIG_CONSOLE_UART=y CONFIG_CONSOLE_UART_NUM=0 CONFIG_CONSOLE_UART_BAUDRATE=115200 CONFIG_INT_WDT=y CONFIG_INT_WDT_TIMEOUT_MS=300 CONFIG_INT_WDT_CHECK_CPU1=y CONFIG_TASK_WDT=y # CONFIG_TASK_WDT_PANIC is not set CONFIG_TASK_WDT_TIMEOUT_S=5 CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0=y CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1=y # CONFIG_ESP32_DEBUG_STUBS_ENABLE is not set CONFIG_IPC_TASK_STACK_SIZE=1024 CONFIG_TIMER_TASK_STACK_SIZE=3584 CONFIG_SW_COEXIST_ENABLE=y # CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH is not set # CONFIG_ESP32_ENABLE_COREDUMP_TO_UART is not set CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE=y CONFIG_MB_MASTER_TIMEOUT_MS_RESPOND=150 CONFIG_MB_MASTER_DELAY_MS_CONVERT=200 CONFIG_MB_QUEUE_LENGTH=20 CONFIG_MB_SERIAL_TASK_STACK_SIZE=4096 CONFIG_MB_SERIAL_BUF_SIZE=256 CONFIG_MB_SERIAL_TASK_PRIO=10 CONFIG_MB_CONTROLLER_SLAVE_ID_SUPPORT=y CONFIG_MB_CONTROLLER_SLAVE_ID=0x00112233 CONFIG_MB_CONTROLLER_NOTIFY_TIMEOUT=20 CONFIG_MB_CONTROLLER_NOTIFY_QUEUE_SIZE=20 CONFIG_MB_CONTROLLER_STACK_SIZE=4096 CONFIG_MB_EVENT_QUEUE_TIMEOUT=20 # CONFIG_MB_TIMER_PORT_ENABLED is not set # CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK is not set CONFIG_TIMER_TASK_PRIORITY=1 CONFIG_TIMER_TASK_STACK_DEPTH=2048 CONFIG_TIMER_QUEUE_LENGTH=10 # CONFIG_L2_TO_L3_COPY is not set # CONFIG_USE_ONLY_LWIP_SELECT is not set CONFIG_ESP_GRATUITOUS_ARP=y CONFIG_GARP_TMR_INTERVAL=60 CONFIG_TCPIP_RECVMBOX_SIZE=32 CONFIG_TCP_MAXRTX=12 CONFIG_TCP_SYNMAXRTX=12 CONFIG_TCP_MSS=1440 CONFIG_TCP_MSL=60000 CONFIG_TCP_SND_BUF_DEFAULT=5744 CONFIG_TCP_WND_DEFAULT=5744 CONFIG_TCP_RECVMBOX_SIZE=6 CONFIG_TCP_QUEUE_OOSEQ=y # CONFIG_ESP_TCP_KEEP_CONNECTION_WHEN_IP_CHANGES is not set CONFIG_TCP_OVERSIZE_MSS=y # CONFIG_TCP_OVERSIZE_QUARTER_MSS is not set # CONFIG_TCP_OVERSIZE_DISABLE is not set CONFIG_UDP_RECVMBOX_SIZE=6 CONFIG_TCPIP_TASK_STACK_SIZE=3072 CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY=y # CONFIG_TCPIP_TASK_AFFINITY_CPU0 is not set # CONFIG_TCPIP_TASK_AFFINITY_CPU1 is not set CONFIG_TCPIP_TASK_AFFINITY=0x7FFFFFFF # CONFIG_PPP_SUPPORT is not set CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT=5 CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT=3072 CONFIG_ESP32_PTHREAD_STACK_MIN=768 CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY=y # CONFIG_ESP32_DEFAULT_PTHREAD_CORE_0 is not set # CONFIG_ESP32_DEFAULT_PTHREAD_CORE_1 is not set CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT=-1 CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT="pthread" CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS=y # CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS is not set # CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED is not set CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT=y CONFIG_SUPPORT_TERMIOS=y CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS=1 CONFIG_SEMIHOSTFS_HOST_PATH_MAX_LEN=128 # End of deprecated options ================================================ FILE: Firmware/BlueCubeModv2/sdkconfig.ci ================================================ ================================================ FILE: Firmware/BlueCubeModv2/sdkconfig.defaults ================================================ CONFIG_BT_ENABLED=y CONFIG_BTDM_CTRL_MODE_BLE_ONLY=n CONFIG_BTDM_CTRL_MODE_BR_EDR_ONLY=y CONFIG_BTDM_CTRL_MODE_BTDM=n CONFIG_BT_CLASSIC_ENABLED=y CONFIG_BT_HID_ENABLED=y CONFIG_BT_HID_DEVICE_ENABLED=y ================================================ FILE: LICENSE ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright 2020 Nathan Reeves 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. ================================================ FILE: PCB/DrillFiles/drills.xln ================================================ M48 ;GenerationSoftware,Autodesk,EAGLE,9.3.0*% ;CreationDate,2019-05-02T16:50:28Z*% FMAT,2 ICI,OFF METRIC,TZ,000.000 T3C0.350 T2C1.016 T1C5.100 % G90 M71 T1 X-8382Y20980 T2 X-31598Y16866 X-35204Y17170 X-14935Y16993 X-11684Y17424 T3 X-18669Y22352 X-20193Y22352 X-4216Y18059 X-5639Y23647 X-7874Y28042 X-24460Y12497 X-29413Y17450 X-15215Y27432 X-15570Y25908 X-29185Y27991 X-29362Y25654 X-24689Y18847 X-11481Y22123 X-28118Y25654 X-28143Y24663 X-29362Y24663 X-29185Y27051 X-28981Y18415 X-24391Y25697 X-24638Y21766 X-20295Y10109 X-23876Y27424 X-14605Y23165 X-12471Y22225 X-6431Y23840 X-20661Y13654 X-4773Y20244 X-21234Y10084 X-11418Y19799 X-24815Y22701 X-10643Y28053 X-16764Y20701 X-14591Y26986 X-23807Y20251 X-23800Y18847 X-15062Y21946 X-22385Y12489 X-16042Y25070 X-15977Y26670 X-23165Y12522 X-16062Y24282 X-18669Y24003 X-20066Y25654 X-21971Y24003 X-21971Y25654 X-16219Y27401 M30 ================================================ FILE: PCB/Eagle/BlueCubeModR2.brd ================================================ BlueCube Mod v1.0 CONTROLLER - + 3.7V LiPo 0402 led >Name >Value ESP32-PICO-D4 module https://www.espressif.com/sites/default/files/documentation/esp32-pico-d4_datasheet_en.pdf >Name >Value STBC08 800 mA standalone LiPo battery charger >Name >Value NCP161 3V3 LDO voltage regulator >Name >Value >NAME >VALUE >NAME >VALUE Generated from <b>STM32L433SARA.AssetTracker.v01.sch</b><p> by exp-lbrs.ulp <b>EMIFIL (R) Chip Ferrite Bead for GHz Noise</b><p> Source: http://www.murata.com/ Ferrite Bead BLM15H.pdf >NAME >VALUE <h3>SparkFun Connectors</h3> This library contains electrically-functional connectors. <br> <br> We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. <br> <br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. <br> <br> <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ <br> <br> You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. <h3>Plated Through Hole</h3> <p>Specifications: <ul><li>Pin count:1</li> <li>Pin pitch:0.1"</li> </ul></p> <p>Example device(s): <ul><li>CONN_01</li> </ul></p> >NAME >VALUE Plated Through Hole Specifications: Pin count:1 Pin pitch:0.1" Example device(s): CONN_01 >NAME >VALUE <h3>SparkFun RF, WiFi, Cellular, and Bluetooth</h3> In this library you'll find things that send or receive RF-- cellular modules, Bluetooth, WiFi, etc. <br> <br> We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. <br> <br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. <br> <br> <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ <br> <br> You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. <h3>2.45GHz Chip Antenna - 6.5 x 2.2 x 1.0 mm</h3> <p> 6.5 x 2.2 x 1.0 mm package</p> <p>Package used for Linx ANT-2.45-CHIP-x antenna</p> <p><a href="https://www.sparkfun.com/datasheets/Components/chip-antenna-2.4ghz.pdf">Example Datasheet</a></p> AF >Name >Value 2.45GHz Chip Antenna - 6.5 x 2.2 x 1.0 mm 6.5 x 2.2 x 1.0 mm package Package used for Linx ANT-2.45-CHIP-x antenna Example Datasheet ON >NAME >VALUE DFN2, 1.00 X 0.60 X 0.30 mm body <p>DFN2 package with body size 1.00 X 0.60 X 0.30 mm</p> DFN2, 1.00 X 0.60 X 0.30 mm body <p>DFN2 package with body size 1.00 X 0.60 X 0.30 mm</p> <b>OSH Park Design Rules</b> <p> Please make sure your boards conform to these design rules. </p> <p> Note, that not all DRC settings must be set by the manufacturer. Several can be adjusted for the design, including those listed on our docs page here. <a href="http://docs.oshpark.com/design-tools/eagle/design-rules-files/">Adjustable Settings</a> </p> Since Version 8.2, EAGLE supports online libraries. The ids of those online libraries will not be understood (or retained) with this version. Since Version 8.3, EAGLE supports Fusion synchronisation. This feature will not be available in this version and saving the document will break the link to the Fusion PCB feature. Since Version 8.3, EAGLE supports URNs for individual library assets (packages, symbols, and devices). The URNs of those assets will not be understood (or retained) with this version. Since Version 8.3, EAGLE supports the association of 3D packages with devices in libraries, schematics, and board files. Those 3D packages will not be understood (or retained) with this version. ================================================ FILE: PCB/Eagle/BlueCubeModR2.sch ================================================ >VALUE Date: >LAST_DATE_TIME Sheet: >SHEET REV: TITLE: Document Number: >DRAWING_NAME <b>SUPPLY SYMBOL</b> <b>Schematic Frame</b><p> Standard 8.5x11 US Letter frame 0402 led >Name >Value NCP161 3V3 LDO voltage regulator >Name >Value STBC08 800 mA standalone LiPo battery charger >Name >Value ESP32-PICO-D4 module https://www.espressif.com/sites/default/files/documentation/esp32-pico-d4_datasheet_en.pdf >Name >Value 0402 led >Name >Value NCP161 3V3 LDO voltage regulator >Name >Value STBC08 800 mA standalone LiPo battery charger >Name >Value ESP32-PICO-D4 module https://www.espressif.com/sites/default/files/documentation/esp32-pico-d4_datasheet_en.pdf >Name >Value 0402led NCP161 3V3 LDO voltage regulator STBC08 800 mA standalone LiPo battery charger ESP32-PICO-D4 module https://www.espressif.com/sites/default/files/documentation/esp32-pico-d4_datasheet_en.pdf <h3>SparkFun Electronics' preferred foot prints</h3> In this library you'll find non-functional items- supply symbols, logos, notations, frame blocks, etc.<br><br> We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com. <br><br> <b>Licensing:</b> CC v3.0 Share-Alike You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. >VALUE <b>SUPPLY SYMBOL</b> <b>Supply Symbols</b><p> GND, VCC, 0V, +5V, -5V, etc.<p> Please keep in mind, that these devices are necessary for the automatic wiring of the supply signals.<p> The pin name defined in the symbol is identical to the net which is to be wired automatically.<p> In this library the device names are the same as the pin names of the symbols, therefore the correct signal names appear next to the supply symbols in the schematic.<p> <author>Created by librarian@cadsoft.de</author> >VALUE <b>SUPPLY SYMBOL</b> >VALUE >VALUE <b>3.3V Supply</b> <b>GND</b> >NAME >VALUE >NAME >VALUE Capacitor Symbol >NAME >VALUE >NAME >VALUE Capacitor 0402 Resistor Generated from <b>STM32L433SARA.AssetTracker.v01.sch</b><p> by exp-lbrs.ulp <b>EMIFIL (R) Chip Ferrite Bead for GHz Noise</b><p> Source: http://www.murata.com/ Ferrite Bead BLM15H.pdf >NAME >VALUE >NAME >VALUE <b>EMIFIL (R) Chip Ferrite Bead for GHz Noise</b><p> Source: http://www.murata.com/ Ferrite Bead BLM15H.pdf <h3>SparkFun Connectors</h3> This library contains electrically-functional connectors. <br> <br> We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. <br> <br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. <br> <br> <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ <br> <br> You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. <h3>Plated Through Hole - Long Pad</h3> <p>Specifications: <ul><li>Pin count:1</li> <li>Pin pitch:0.1"</li> </ul></p> <p>Example device(s): <ul><li>CONN_01</li> </ul></p> >NAME >VALUE <h3>Plated Through Hole</h3> <p>Specifications: <ul><li>Pin count:1</li> <li>Pin pitch:0.1"</li> </ul></p> <p>Example device(s): <ul><li>CONN_01</li> </ul></p> >NAME >VALUE <h3>Plated Through Hole - 2mm</h3> <p>Specifications: <ul><li>Pin count:1</li> </ul></p> <p>Example device(s): <ul><li>CONN_01</li> </ul></p> >NAME >VALUE <h3>Plated Through Hole - Long Pad w/ Offset Hole</h3> <p>Specifications: <ul><li>Pin count:1</li> </ul></p> <p>Example device(s): <ul><li>CONN_01</li> </ul></p> >NAME >VALUE <h3>Pogo Pin - 0.061"</h3> <p>Specifications: <ul><li>Pin count:1</li> <li>Pin pitch:0.061"</li> </ul></p> <p>Example device(s): <ul><li>CONN_01</li> </ul></p> >NAME >VALUE <h3>Pogo Pin Hole - 0.58" </h3> <p>Specifications: <ul><li>Pin count:1</li> <li>Pin pitch:0.58"</li> </ul></p> <p>Example device(s): <ul><li>CONN_01</li> </ul></p> >NAME >VALUE <h3>Sew-On Fabric Snap - Female</h3> Equivalent to size #1/0 snap. <p>Specifications: <ul><li>Pin count: 1</li> <li>Area:8mm</li> </ul></p> <p>Example device(s): <ul><li>CONN_01</li> </ul></p> >NAME >VALUE <h3>Sew-On Fabric Snap - Male</h3> Equivalent to size #1/0 snap. <p>Specifications: <ul><li>Pin count: 1</li> <li>Area:8mm</li> </ul></p> <p>Example device(s): <ul><li>CONN_01</li> </ul></p> >NAME >VALUE <h3>Spring Connector</h3> <p>Specifications: <ul><li>Pin count: 1</li> <li>Area:0.25"</li> </ul></p> <p>Example device(s): <ul><li>CONN_01</li> </ul></p> >NAME >VALUE <h3>Plated Through Hole - No Silk Outline Kit Version</h3> <p> Mask on only one side to make soldering in kits easier. <p>Specifications: <ul><li>Pin count:1</li> <li>Pin pitch:0.1"</li> </ul></p> <p>Example device(s): <ul><li>CONN_01</li> </ul></p> >NAME >VALUE <h3>Plated Through Hole - No Silk Outline</h3> <p>Specifications: <ul><li>Pin count:1</li> <li>Pin pitch:0.1"</li> </ul></p> <p>Example device(s): <ul><li>CONN_01</li> </ul></p> >NAME >VALUE <h3>SMTSO-256-ET Flush Mount Nut</h3> .165 drill <br> Fits 4-40 Screws. <p>Specifications: <ul><li>Pin count: 1</li> </ul></p> <p>Example device(s): <ul><li>CONN_01</li> </ul></p> >NAME >VALUE Plated Through Hole - Long Pad Specifications: Pin count:1 Pin pitch:0.1" Example device(s): CONN_01 Plated Through Hole Specifications: Pin count:1 Pin pitch:0.1" Example device(s): CONN_01 Plated Through Hole - 2mm Specifications: Pin count:1 Example device(s): CONN_01 Plated Through Hole - Long Pad w/ Offset Hole Specifications: Pin count:1 Example device(s): CONN_01 Pogo Pin - 0.061" Specifications: Pin count:1 Pin pitch:0.061" Example device(s): CONN_01 Pogo Pin Hole - 0.58" Specifications: Pin count:1 Pin pitch:0.58" Example device(s): CONN_01 Sew-On Fabric Snap - Female Equivalent to size #1/0 snap. Specifications: Pin count: 1 Area:8mm Example device(s): CONN_01 Sew-On Fabric Snap - Male Equivalent to size #1/0 snap. Specifications: Pin count: 1 Area:8mm Example device(s): CONN_01 Spring Connector Specifications: Pin count: 1 Area:0.25" Example device(s): CONN_01 Plated Through Hole - No Silk Outline Kit Version Mask on only one side to make soldering in kits easier. Specifications: Pin count:1 Pin pitch:0.1" Example device(s): CONN_01 Plated Through Hole - No Silk Outline Specifications: Pin count:1 Pin pitch:0.1" Example device(s): CONN_01 SMTSO-256-ET Flush Mount Nut .165 drill Fits 4-40 Screws. Specifications: Pin count: 1 Example device(s): CONN_01 <h3>1 Pin Connection</h3> >VALUE >NAME <h3>Single connection point. Often used as Generic Header-pin footprint for 0.1 inch spaced/style header connections</h3> <p></p> <p></p> On any of the 0.1 inch spaced packages, you can populate with these: <ul> <li><a href="https://www.sparkfun.com/products/116"> Break Away Headers - Straight</a> (PRT-00116)</li> <li><a href="https://www.sparkfun.com/products/553"> Break Away Male Headers - Right Angle</a> (PRT-00553)</li> <li><a href="https://www.sparkfun.com/products/115"> Female Headers</a> (PRT-00115)</li> <li><a href="https://www.sparkfun.com/products/117"> Break Away Headers - Machine Pin</a> (PRT-00117)</li> <li><a href="https://www.sparkfun.com/products/743"> Break Away Female Headers - Swiss Machine Pin</a> (PRT-00743)</li> <p></p> </ul> <p></p> This device is also useful as a general connection point to wire up your design to another part of your project. Our various solder wires solder well into these plated through hole pads. <ul> <li><a href="https://www.sparkfun.com/products/11375"> Hook-Up Wire - Assortment (Stranded, 22 AWG)</a> (PRT-11375)</li> <li><a href="https://www.sparkfun.com/products/11367"> Hook-Up Wire - Assortment (Solid Core, 22 AWG)</a> (PRT-11367)</li> <li><a href="https://www.sparkfun.com/categories/141"> View the entire wire category on our website here</a></li> <p></p> </ul> <p></p> <b>Special notes:</b> <p> </p> SMTSO-256-ET is a "flush mount" nut for a 4-40 screw. We mostly use this on specialty testbeds; it is a nice way to connect hardware to your PCB at an adjustable hieght. <p></p> Also note, the SNAP packages are for using a snappable style connector. We sell a baggie of snaps and they are also used on two LilyPad designs: <ul> <li><a href="https://www.sparkfun.com/products/11347"> Snap Assortment - 30 pack (male and female)</a> (DEV-11347)</li> <li><a href="https://www.sparkfun.com/products/10941">LilyPad Arduino SimpleSnap</a> (DEV-10941)</li> <li><a href="https://www.sparkfun.com/products/10940"> LilyPad SimpleSnap Protoboard</a> (DEV-10940)</li> <p></p> </ul> >NAME >VALUE >NAME >VALUE USB - micro B USB 2.0 Receptacle Connector 5 Position Surface Mount, Right Angle <h3>SparkFun RF, WiFi, Cellular, and Bluetooth</h3> In this library you'll find things that send or receive RF-- cellular modules, Bluetooth, WiFi, etc. <br> <br> We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. <br> <br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. <br> <br> <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ <br> <br> You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. <h3>2.4GHz Chip Antenna - 9.5 x 2.0 x 1.2 mm</h3> <p><a href="https://www.sparkfun.com/datasheets/Wireless/General/SPK-AT9520-B2R4HAA.pdf">Example Datasheet</a></p> >Name >Value <h3>2.45GHz Chip Antenna - 6.5 x 2.2 x 1.0 mm</h3> <p> 6.5 x 2.2 x 1.0 mm package</p> <p>Package used for Linx ANT-2.45-CHIP-x antenna</p> <p><a href="https://www.sparkfun.com/datasheets/Components/chip-antenna-2.4ghz.pdf">Example Datasheet</a></p> AF >Name >Value <h3>2.4GHz Chip Antenna - 8.0x1.0mm</h3> <p>Package for Johanson Technology 2500AT44M0400E - 2.4GHz SMD antenna.</p> <p><a href="http://www.mouser.com/ds/2/611/antenna_2500at44m0400-242425.pdf">Datasheet</a></p> >NAME >VALUE 2.4GHz Chip Antenna - 9.5 x 2.0 x 1.2 mm Example Datasheet 2.45GHz Chip Antenna - 6.5 x 2.2 x 1.0 mm 6.5 x 2.2 x 1.0 mm package Package used for Linx ANT-2.45-CHIP-x antenna Example Datasheet 2.4GHz Chip Antenna - 8.0x1.0mm Package for Johanson Technology 2500AT44M0400E - 2.4GHz SMD antenna. Datasheet <h3>Antenna</h3> >NAME >VALUE <h3>Single-ended Antennae</h3> <p>2.4GHz and antennae with just one terminal. These are all chip antennae.</p> <p><b>2.4GHz (WiFi/BT/ZigBee) Antennae</b> <ul><li><b>ANT-2.4GHZ-6.5X2.2MM</b> - 6.5 x 2.2 mm chip antenna. (<a href="https://www.sparkfun.com/products/144">SparkFun Product</a>)</li> <li><b>ANT-2.4GHZ8.0X1.0MM</b> - 8.0 x 1.0 mm chip antenna. (<a href="http://www.mouser.com/ds/2/611/antenna_2500at44m0400-242425.pdf">Datasheet</a>)</li> <li><b>ANT-2.4GHZ9.5X2.0MM</b> - 9.5 x 2.0 mm chip antenna. (<a href="https://www.sparkfun.com/products/9025">SparkFun Product</a>)</li> </ul></p> ON >NAME >VALUE Switch Slide Spdt 300ma 6v >NAME >VALUE >NAME >VALUE Silabs CP2104 USB to UART Bridge <p><b>Generic 1005 (0402) package</b></p> <p>0.2mm courtyard excess rounded to nearest 0.05mm.</p> >NAME >VALUE Chip, 1.25 X 0.70 X 0.50 mm body <p>Chip package with body size 1.25 X 0.70 X 0.50 mm</p> DFN2, 1.00 X 0.60 X 0.30 mm body <p>DFN2 package with body size 1.00 X 0.60 X 0.30 mm</p> Chip, 1.25 X 0.70 X 0.50 mm body <p>Chip package with body size 1.25 X 0.70 X 0.50 mm</p> DFN2, 1.00 X 0.60 X 0.30 mm body <p>DFN2 package with body size 1.00 X 0.60 X 0.30 mm</p> Conventional Si diode MicroUSB LiPo Charger USBtoUART 3.3V LDO Since Version 8.2, EAGLE supports online libraries. The ids of those online libraries will not be understood (or retained) with this version. Since Version 8.3, EAGLE supports URNs for individual library assets (packages, symbols, and devices). The URNs of those assets will not be understood (or retained) with this version. Since Version 8.3, EAGLE supports the association of 3D packages with devices in libraries, schematics, and board files. Those 3D packages will not be understood (or retained) with this version. ================================================ FILE: PCB/GerberFiles/copper_bottom_l4.gbr ================================================ G04 EAGLE Gerber RS-274X export* G75* %MOMM*% %FSLAX34Y34*% %LPD*% %INBottom Copper*% %IPPOS*% %AMOC8* 5,1,8,0,0,1.08239X$1,22.5*% G01* %ADD10C,1.879600*% %ADD11R,1.000000X1.600000*% %ADD12C,0.553200*% %ADD13C,0.152400*% %ADD14C,0.254000*% G36* X-167127Y145284D02* X-167127Y145284D01* X-28580Y167866D01* X-28502Y167892D01* X-28483Y167897D01* X-28459Y167900D01* X-28455Y167903D01* X-28422Y167910D01* X-28386Y167931D01* X-28346Y167945D01* X-28281Y167994D01* X-28272Y168000D01* X-28242Y168016D01* X-28237Y168020D01* X-28211Y168036D01* X-28184Y168068D01* X-28150Y168093D01* X-28105Y168159D01* X-28072Y168194D01* X-28068Y168203D01* X-28051Y168223D01* X-28035Y168262D01* X-28012Y168297D01* X-27992Y168367D01* X-27969Y168417D01* X-27967Y168431D01* X-27959Y168451D01* X-27953Y168506D01* X-27945Y168533D01* X-27947Y168562D01* X-27941Y168618D01* X-27941Y255429D01* X-27942Y255439D01* X-27942Y255444D01* X-27948Y255471D01* X-27955Y255515D01* X-27961Y255602D01* X-27975Y255636D01* X-27980Y255672D01* X-28021Y255748D01* X-28054Y255829D01* X-28083Y255866D01* X-28096Y255889D01* X-28118Y255910D01* X-28158Y255961D01* X-55400Y283829D01* X-55477Y283886D01* X-55550Y283948D01* X-55576Y283958D01* X-55598Y283975D01* X-55689Y284004D01* X-55778Y284040D01* X-55813Y284044D01* X-55833Y284050D01* X-55866Y284050D01* X-55945Y284058D01* X-102407Y284058D01* X-102477Y284047D01* X-102549Y284045D01* X-102598Y284027D01* X-102649Y284019D01* X-102713Y283985D01* X-102780Y283960D01* X-102821Y283928D01* X-102867Y283903D01* X-102916Y283851D01* X-102972Y283807D01* X-103000Y283763D01* X-103036Y283725D01* X-103066Y283660D01* X-103105Y283600D01* X-103118Y283549D01* X-103140Y283502D01* X-103148Y283431D01* X-103165Y283361D01* X-103161Y283309D01* X-103167Y283258D01* X-103152Y283187D01* X-103146Y283116D01* X-103126Y283068D01* X-103115Y283017D01* X-103078Y282956D01* X-103050Y282890D01* X-103005Y282834D01* X-102988Y282806D01* X-102971Y282791D01* X-102945Y282759D01* X-102389Y282203D01* X-102389Y278859D01* X-104754Y276494D01* X-108098Y276494D01* X-109879Y278275D01* X-109953Y278328D01* X-110023Y278388D01* X-110053Y278400D01* X-110079Y278419D01* X-110166Y278446D01* X-110251Y278480D01* X-110292Y278484D01* X-110314Y278491D01* X-110346Y278490D01* X-110417Y278498D01* X-126433Y278498D01* X-126603Y278668D01* X-126677Y278721D01* X-126746Y278781D01* X-126777Y278793D01* X-126803Y278812D01* X-126890Y278839D01* X-126975Y278873D01* X-127016Y278877D01* X-127038Y278884D01* X-127070Y278883D01* X-127141Y278891D01* X-159529Y278891D01* X-159599Y278880D01* X-159671Y278878D01* X-159720Y278860D01* X-159771Y278852D01* X-159835Y278818D01* X-159902Y278793D01* X-159943Y278761D01* X-159989Y278736D01* X-160038Y278684D01* X-160094Y278640D01* X-160122Y278596D01* X-160158Y278558D01* X-160188Y278493D01* X-160227Y278433D01* X-160240Y278382D01* X-160262Y278335D01* X-160270Y278264D01* X-160287Y278194D01* X-160283Y278142D01* X-160289Y278091D01* X-160274Y278020D01* X-160268Y277949D01* X-160248Y277901D01* X-160237Y277850D01* X-160200Y277789D01* X-160172Y277723D01* X-160127Y277667D01* X-160110Y277639D01* X-160093Y277624D01* X-160067Y277592D01* X-158140Y275665D01* X-158135Y275604D01* X-158123Y275574D01* X-158117Y275542D01* X-158075Y275462D01* X-158039Y275378D01* X-158013Y275346D01* X-158002Y275325D01* X-157979Y275303D01* X-157934Y275247D01* X-151245Y268557D01* X-151187Y268515D01* X-151134Y268466D01* X-151087Y268444D01* X-151045Y268414D01* X-150977Y268393D01* X-150911Y268362D01* X-150860Y268357D01* X-150810Y268341D01* X-150738Y268343D01* X-150667Y268335D01* X-150616Y268346D01* X-150564Y268348D01* X-150497Y268372D01* X-150427Y268388D01* X-150382Y268414D01* X-150333Y268432D01* X-150277Y268477D01* X-150215Y268514D01* X-150182Y268553D01* X-150141Y268586D01* X-150102Y268646D01* X-150056Y268701D01* X-150036Y268749D01* X-150008Y268793D01* X-149990Y268862D01* X-149982Y268883D01* X-149973Y268902D01* X-149973Y268906D01* X-149964Y268929D01* X-149956Y269000D01* X-149948Y269031D01* X-149950Y269055D01* X-149945Y269096D01* X-149945Y271533D01* X-147581Y273897D01* X-144236Y273897D01* X-141872Y271533D01* X-141872Y268188D01* X-143045Y267015D01* X-143057Y266999D01* X-143072Y266986D01* X-143128Y266899D01* X-143189Y266815D01* X-143195Y266796D01* X-143205Y266779D01* X-143231Y266679D01* X-143261Y266580D01* X-143261Y266560D01* X-143265Y266541D01* X-143257Y266438D01* X-143255Y266334D01* X-143248Y266315D01* X-143246Y266296D01* X-143206Y266201D01* X-143170Y266103D01* X-143158Y266088D01* X-143150Y266069D01* X-143045Y265938D01* X-138711Y261604D01* X-138711Y213368D01* X-146820Y205259D01* X-163367Y205259D01* X-163457Y205245D01* X-163548Y205237D01* X-163577Y205225D01* X-163609Y205220D01* X-163690Y205177D01* X-163774Y205141D01* X-163806Y205115D01* X-163827Y205104D01* X-163849Y205081D01* X-163905Y205036D01* X-164313Y204628D01* X-164355Y204570D01* X-164404Y204518D01* X-164426Y204471D01* X-164456Y204429D01* X-164477Y204360D01* X-164508Y204295D01* X-164513Y204243D01* X-164529Y204194D01* X-164527Y204122D01* X-164535Y204051D01* X-164524Y204000D01* X-164522Y203948D01* X-164498Y203880D01* X-164483Y203810D01* X-164456Y203766D01* X-164438Y203717D01* X-164393Y203661D01* X-164356Y203599D01* X-164317Y203565D01* X-164284Y203525D01* X-164224Y203486D01* X-164169Y203439D01* X-164121Y203420D01* X-164077Y203392D01* X-164008Y203374D01* X-163941Y203347D01* X-163870Y203339D01* X-163839Y203332D01* X-163816Y203333D01* X-163775Y203329D01* X-116648Y203329D01* X-115565Y202246D01* X-115491Y202193D01* X-115422Y202133D01* X-115391Y202121D01* X-115365Y202102D01* X-115278Y202075D01* X-115193Y202041D01* X-115153Y202037D01* X-115130Y202030D01* X-115098Y202031D01* X-115027Y202023D01* X-113071Y202023D01* X-112954Y202042D01* X-112836Y202060D01* X-112832Y202062D01* X-112828Y202062D01* X-112723Y202118D01* X-112617Y202173D01* X-112614Y202176D01* X-112611Y202177D01* X-112529Y202263D01* X-112446Y202349D01* X-112444Y202353D01* X-112441Y202356D01* X-112391Y202464D01* X-112340Y202571D01* X-112339Y202575D01* X-112338Y202579D01* X-112325Y202696D01* X-112310Y202815D01* X-112311Y202820D01* X-112311Y202823D01* X-112313Y202837D01* X-112335Y202981D01* X-113130Y205945D01* X-113130Y213663D01* X-111132Y221117D01* X-107274Y227801D01* X-101817Y233258D01* X-95133Y237116D01* X-88344Y238935D01* X-88322Y238945D01* X-88299Y238949D01* X-88211Y238996D01* X-88120Y239037D01* X-88103Y239053D01* X-88081Y239064D01* X-88013Y239136D01* X-87940Y239204D01* X-87929Y239225D01* X-87912Y239243D01* X-87870Y239333D01* X-87823Y239420D01* X-87818Y239444D01* X-87808Y239466D01* X-87797Y239564D01* X-87780Y239662D01* X-87784Y239686D01* X-87781Y239710D01* X-87802Y239807D01* X-87817Y239906D01* X-87828Y239927D01* X-87834Y239950D01* X-87885Y240036D01* X-87930Y240124D01* X-87947Y240141D01* X-87960Y240162D01* X-88035Y240226D01* X-88107Y240295D01* X-88128Y240306D01* X-88147Y240321D01* X-88239Y240359D01* X-88329Y240401D01* X-88352Y240404D01* X-88375Y240413D01* X-88541Y240432D01* X-104866Y240432D01* X-104956Y240417D01* X-105047Y240410D01* X-105077Y240397D01* X-105109Y240392D01* X-105190Y240349D01* X-105273Y240314D01* X-105306Y240288D01* X-105326Y240277D01* X-105348Y240254D01* X-105404Y240209D01* X-120646Y224967D01* X-120658Y224951D01* X-120673Y224939D01* X-120729Y224851D01* X-120789Y224768D01* X-120795Y224749D01* X-120806Y224732D01* X-120831Y224631D01* X-120862Y224532D01* X-120861Y224512D01* X-120866Y224493D01* X-120858Y224390D01* X-120855Y224287D01* X-120849Y224268D01* X-120847Y224248D01* X-120807Y224153D01* X-120771Y224056D01* X-120759Y224040D01* X-120751Y224022D01* X-120677Y223930D01* X-120677Y220578D01* X-123042Y218213D01* X-126386Y218213D01* X-128751Y220578D01* X-128751Y223922D01* X-126386Y226287D01* X-125391Y226287D01* X-125301Y226301D01* X-125210Y226309D01* X-125181Y226321D01* X-125149Y226326D01* X-125068Y226369D01* X-124984Y226405D01* X-124952Y226431D01* X-124931Y226442D01* X-124909Y226465D01* X-124853Y226510D01* X-124317Y227046D01* X-108279Y243084D01* X-106865Y244497D01* X-67534Y244497D01* X-65697Y242660D01* X-65623Y242607D01* X-65554Y242548D01* X-65523Y242536D01* X-65497Y242517D01* X-65410Y242490D01* X-65325Y242456D01* X-65284Y242451D01* X-65262Y242444D01* X-65230Y242445D01* X-65159Y242437D01* X-62640Y242437D01* X-60275Y240073D01* X-60275Y236729D01* X-62640Y234364D01* X-65092Y234364D01* X-65163Y234352D01* X-65234Y234350D01* X-65283Y234333D01* X-65335Y234324D01* X-65398Y234291D01* X-65465Y234266D01* X-65506Y234233D01* X-65552Y234209D01* X-65601Y234157D01* X-65657Y234112D01* X-65686Y234068D01* X-65721Y234031D01* X-65752Y233966D01* X-65790Y233905D01* X-65803Y233855D01* X-65825Y233808D01* X-65833Y233736D01* X-65850Y233667D01* X-65846Y233615D01* X-65852Y233563D01* X-65837Y233493D01* X-65831Y233422D01* X-65811Y233374D01* X-65800Y233323D01* X-65763Y233261D01* X-65735Y233195D01* X-65690Y233139D01* X-65674Y233112D01* X-65656Y233096D01* X-65630Y233064D01* X-60366Y227801D01* X-56508Y221117D01* X-54510Y213663D01* X-54510Y205945D01* X-56508Y198491D01* X-60366Y191807D01* X-65823Y186350D01* X-72507Y182492D01* X-79961Y180494D01* X-87679Y180494D01* X-95133Y182492D01* X-101817Y186350D01* X-107274Y191807D01* X-109477Y195625D01* X-109552Y195715D01* X-109627Y195809D01* X-109631Y195812D01* X-109633Y195815D01* X-109733Y195878D01* X-109834Y195942D01* X-109838Y195943D01* X-109842Y195946D01* X-109957Y195973D01* X-110073Y196002D01* X-110077Y196002D01* X-110081Y196003D01* X-110200Y195993D01* X-110318Y195983D01* X-110322Y195982D01* X-110326Y195981D01* X-110436Y195933D01* X-110544Y195887D01* X-110548Y195884D01* X-110551Y195883D01* X-110561Y195873D01* X-110675Y195782D01* X-112545Y193913D01* X-112556Y193896D01* X-112572Y193884D01* X-112628Y193797D01* X-112688Y193713D01* X-112694Y193694D01* X-112705Y193677D01* X-112730Y193577D01* X-112761Y193478D01* X-112760Y193458D01* X-112765Y193439D01* X-112757Y193336D01* X-112754Y193232D01* X-112747Y193213D01* X-112746Y193193D01* X-112705Y193099D01* X-112670Y193001D01* X-112657Y192985D01* X-112649Y192967D01* X-112545Y192836D01* X-94637Y174929D01* X-94563Y174876D01* X-94494Y174816D01* X-94464Y174804D01* X-94438Y174785D01* X-94351Y174758D01* X-94266Y174724D01* X-94225Y174720D01* X-94203Y174713D01* X-94170Y174714D01* X-94099Y174706D01* X-66683Y174706D01* X-66593Y174720D01* X-66502Y174728D01* X-66472Y174740D01* X-66440Y174745D01* X-66360Y174788D01* X-66276Y174824D01* X-66244Y174850D01* X-66223Y174861D01* X-66217Y174866D01* X-66217Y174867D01* X-66199Y174885D01* X-66145Y174929D01* X-48437Y192637D01* X-48384Y192711D01* X-48324Y192780D01* X-48312Y192810D01* X-48293Y192836D01* X-48266Y192923D01* X-48232Y193008D01* X-48228Y193049D01* X-48221Y193071D01* X-48222Y193104D01* X-48214Y193175D01* X-48214Y197640D01* X-48217Y197660D01* X-48215Y197679D01* X-48237Y197781D01* X-48253Y197883D01* X-48263Y197900D01* X-48267Y197920D01* X-48320Y198009D01* X-48369Y198100D01* X-48383Y198114D01* X-48393Y198131D01* X-48472Y198198D01* X-48547Y198270D01* X-48565Y198278D01* X-48580Y198291D01* X-48676Y198330D01* X-48770Y198373D01* X-48790Y198375D01* X-48808Y198383D01* X-48975Y198401D01* X-49405Y198401D01* X-51770Y200766D01* X-51770Y204110D01* X-49405Y206475D01* X-46061Y206475D01* X-43696Y204110D01* X-43696Y200766D01* X-43925Y200537D01* X-43978Y200463D01* X-44038Y200393D01* X-44050Y200363D01* X-44069Y200337D01* X-44096Y200250D01* X-44130Y200165D01* X-44134Y200124D01* X-44141Y200102D01* X-44140Y200070D01* X-44148Y199999D01* X-44148Y191176D01* X-64684Y170640D01* X-96098Y170640D01* X-106539Y181081D01* X-106618Y181138D01* X-106693Y181200D01* X-106718Y181209D01* X-106739Y181224D01* X-106832Y181253D01* X-106923Y181288D01* X-106949Y181289D01* X-106974Y181297D01* X-107071Y181294D01* X-107168Y181298D01* X-107194Y181291D01* X-107220Y181290D01* X-107311Y181257D01* X-107405Y181230D01* X-107426Y181215D01* X-107451Y181206D01* X-107527Y181145D01* X-107607Y181090D01* X-107622Y181069D01* X-107643Y181052D01* X-107695Y180970D01* X-107753Y180892D01* X-107762Y180867D01* X-107776Y180845D01* X-107799Y180751D01* X-107830Y180658D01* X-107829Y180632D01* X-107836Y180607D01* X-107828Y180510D01* X-107827Y180412D01* X-107818Y180381D01* X-107817Y180362D01* X-107804Y180331D01* X-107781Y180251D01* X-106171Y176366D01* X-106171Y172122D01* X-107795Y168201D01* X-110797Y165199D01* X-114718Y163575D01* X-118962Y163575D01* X-122883Y165199D01* X-125885Y168201D01* X-127509Y172122D01* X-127509Y176366D01* X-125885Y180287D01* X-122883Y183289D01* X-118962Y184913D01* X-114718Y184913D01* X-110833Y183303D01* X-110738Y183281D01* X-110645Y183253D01* X-110619Y183253D01* X-110593Y183247D01* X-110496Y183256D01* X-110399Y183259D01* X-110374Y183268D01* X-110348Y183270D01* X-110260Y183310D01* X-110168Y183343D01* X-110148Y183360D01* X-110124Y183370D01* X-110052Y183436D01* X-109976Y183497D01* X-109962Y183519D01* X-109943Y183537D01* X-109896Y183622D01* X-109843Y183704D01* X-109837Y183729D01* X-109824Y183752D01* X-109807Y183848D01* X-109783Y183943D01* X-109785Y183969D01* X-109780Y183994D01* X-109794Y184091D01* X-109802Y184188D01* X-109812Y184212D01* X-109816Y184238D01* X-109860Y184325D01* X-109898Y184414D01* X-109919Y184439D01* X-109928Y184457D01* X-109951Y184480D01* X-110003Y184545D01* X-115835Y190377D01* X-115909Y190430D01* X-115978Y190489D01* X-116008Y190501D01* X-116034Y190520D01* X-116121Y190547D01* X-116206Y190581D01* X-116247Y190586D01* X-116270Y190593D01* X-116302Y190592D01* X-116373Y190600D01* X-125020Y190600D01* X-130413Y195992D01* X-130487Y196045D01* X-130556Y196105D01* X-130587Y196117D01* X-130613Y196136D01* X-130700Y196163D01* X-130785Y196197D01* X-130826Y196201D01* X-130848Y196208D01* X-130880Y196207D01* X-130951Y196215D01* X-178267Y196215D01* X-178338Y196204D01* X-178410Y196202D01* X-178459Y196184D01* X-178510Y196176D01* X-178573Y196142D01* X-178641Y196117D01* X-178681Y196085D01* X-178727Y196061D01* X-178777Y196009D01* X-178833Y195964D01* X-178861Y195920D01* X-178897Y195882D01* X-178927Y195817D01* X-178966Y195757D01* X-178978Y195706D01* X-179000Y195659D01* X-179008Y195588D01* X-179026Y195518D01* X-179022Y195466D01* X-179028Y195415D01* X-179012Y195344D01* X-179007Y195273D01* X-178986Y195225D01* X-178975Y195174D01* X-178938Y195113D01* X-178910Y195047D01* X-178866Y194991D01* X-178849Y194963D01* X-178831Y194948D01* X-178806Y194916D01* X-177907Y194017D01* X-177882Y194000D01* X-177803Y193930D01* X-176504Y193028D01* X-176455Y192757D01* X-176447Y192735D01* X-176445Y192712D01* X-176406Y192620D01* X-176373Y192526D01* X-176358Y192507D01* X-176349Y192485D01* X-176244Y192354D01* X-176049Y192160D01* X-176049Y190578D01* X-176044Y190548D01* X-176037Y190443D01* X-167998Y145900D01* X-167994Y145887D01* X-167993Y145874D01* X-167953Y145772D01* X-167916Y145668D01* X-167908Y145657D01* X-167903Y145645D01* X-167832Y145561D01* X-167764Y145474D01* X-167753Y145467D01* X-167744Y145457D01* X-167650Y145400D01* X-167558Y145339D01* X-167546Y145336D01* X-167534Y145329D01* X-167427Y145305D01* X-167321Y145277D01* X-167307Y145278D01* X-167294Y145275D01* X-167127Y145284D01* G37* G36* X-289477Y151884D02* X-289477Y151884D01* X-289410Y151888D01* X-289358Y151909D01* X-289302Y151922D01* X-289245Y151956D01* X-289183Y151981D01* X-289140Y152019D01* X-289122Y152029D01* X-289091Y152048D01* X-289048Y152099D01* X-288997Y152142D01* X-288968Y152191D01* X-288952Y152208D01* X-288950Y152212D01* X-288931Y152235D01* X-288906Y152297D01* X-288872Y152354D01* X-288862Y152402D01* X-288849Y152431D01* X-288848Y152442D01* X-288839Y152463D01* X-288828Y152565D01* X-288822Y152595D01* X-288823Y152608D01* X-288821Y152630D01* X-288821Y176268D01* X-286665Y178423D01* X-286624Y178481D01* X-286574Y178533D01* X-286552Y178580D01* X-286522Y178622D01* X-286501Y178691D01* X-286471Y178756D01* X-286465Y178808D01* X-286450Y178858D01* X-286451Y178929D01* X-286444Y179000D01* X-286455Y179051D01* X-286456Y179103D01* X-286481Y179171D01* X-286496Y179241D01* X-286523Y179286D01* X-286540Y179334D01* X-286585Y179390D01* X-286622Y179452D01* X-286662Y179486D01* X-286694Y179526D01* X-286754Y179565D01* X-286809Y179612D01* X-286857Y179631D01* X-286901Y179659D01* X-286970Y179677D01* X-287037Y179704D01* X-287108Y179712D01* X-287140Y179720D01* X-287163Y179718D01* X-287204Y179722D01* X-288261Y179722D01* X-288429Y179890D01* X-288503Y179943D01* X-288572Y180003D01* X-288603Y180015D01* X-288629Y180034D01* X-288716Y180061D01* X-288801Y180095D01* X-288842Y180099D01* X-288864Y180106D01* X-288896Y180105D01* X-288967Y180113D01* X-291486Y180113D01* X-293851Y182478D01* X-293851Y185822D01* X-291486Y188187D01* X-288142Y188187D01* X-285777Y185822D01* X-285777Y184549D01* X-285774Y184529D01* X-285776Y184510D01* X-285754Y184408D01* X-285738Y184306D01* X-285728Y184289D01* X-285724Y184269D01* X-285671Y184180D01* X-285622Y184089D01* X-285608Y184075D01* X-285598Y184058D01* X-285519Y183991D01* X-285444Y183919D01* X-285426Y183911D01* X-285411Y183898D01* X-285315Y183859D01* X-285221Y183816D01* X-285201Y183814D01* X-285183Y183806D01* X-285016Y183788D01* X-240864Y183788D01* X-240794Y183799D01* X-240722Y183801D01* X-240673Y183819D01* X-240622Y183827D01* X-240558Y183861D01* X-240491Y183886D01* X-240450Y183918D01* X-240404Y183943D01* X-240355Y183995D01* X-240299Y184039D01* X-240271Y184083D01* X-240235Y184121D01* X-240205Y184186D01* X-240166Y184246D01* X-240153Y184297D01* X-240131Y184344D01* X-240123Y184415D01* X-240106Y184485D01* X-240110Y184537D01* X-240104Y184588D01* X-240119Y184659D01* X-240125Y184730D01* X-240145Y184778D01* X-240156Y184829D01* X-240193Y184890D01* X-240221Y184956D01* X-240266Y185012D01* X-240283Y185040D01* X-240300Y185055D01* X-240326Y185087D01* X-242035Y186796D01* X-242035Y190140D01* X-240321Y191854D01* X-240268Y191927D01* X-240209Y191997D01* X-240197Y192027D01* X-240178Y192053D01* X-240151Y192140D01* X-240117Y192225D01* X-240112Y192266D01* X-240105Y192288D01* X-240106Y192321D01* X-240098Y192392D01* X-240098Y198514D01* X-240113Y198604D01* X-240120Y198695D01* X-240133Y198725D01* X-240138Y198757D01* X-240181Y198838D01* X-240216Y198922D01* X-240242Y198954D01* X-240253Y198974D01* X-240277Y198997D01* X-240321Y199052D01* X-242102Y200834D01* X-242102Y201260D01* X-242114Y201331D01* X-242116Y201403D01* X-242134Y201452D01* X-242142Y201503D01* X-242176Y201566D01* X-242200Y201634D01* X-242233Y201674D01* X-242257Y201720D01* X-242309Y201770D01* X-242354Y201826D01* X-242398Y201854D01* X-242436Y201890D01* X-242500Y201920D01* X-242561Y201959D01* X-242611Y201971D01* X-242659Y201993D01* X-242730Y202001D01* X-242799Y202019D01* X-242851Y202015D01* X-242903Y202020D01* X-242973Y202005D01* X-243045Y202000D01* X-243092Y201979D01* X-243143Y201968D01* X-243205Y201931D01* X-243271Y201903D01* X-243327Y201859D01* X-243355Y201842D01* X-243370Y201824D01* X-243402Y201798D01* X-248839Y196362D01* X-250550Y194650D01* X-292677Y194650D01* X-292767Y194636D01* X-292858Y194628D01* X-292888Y194616D01* X-292920Y194611D01* X-293001Y194568D01* X-293085Y194532D01* X-293117Y194506D01* X-293137Y194495D01* X-293160Y194472D01* X-293216Y194427D01* X-309399Y178244D01* X-309411Y178227D01* X-309426Y178215D01* X-309483Y178128D01* X-309543Y178044D01* X-309549Y178025D01* X-309559Y178008D01* X-309585Y177908D01* X-309615Y177809D01* X-309615Y177789D01* X-309619Y177770D01* X-309611Y177667D01* X-309609Y177563D01* X-309602Y177544D01* X-309600Y177524D01* X-309560Y177430D01* X-309524Y177332D01* X-309512Y177316D01* X-309504Y177298D01* X-309399Y177167D01* X-306931Y174699D01* X-305307Y170778D01* X-305307Y166534D01* X-306931Y162613D01* X-309933Y159611D01* X-313854Y157987D01* X-318098Y157987D01* X-322019Y159611D01* X-325021Y162613D01* X-326645Y166534D01* X-326645Y170778D01* X-325021Y174699D01* X-322019Y177701D01* X-318098Y179325D01* X-315820Y179325D01* X-315730Y179339D01* X-315639Y179347D01* X-315609Y179359D01* X-315577Y179364D01* X-315496Y179407D01* X-315412Y179443D01* X-315380Y179469D01* X-315360Y179480D01* X-315337Y179503D01* X-315281Y179548D01* X-295097Y199732D01* X-252970Y199732D01* X-252880Y199746D01* X-252789Y199754D01* X-252759Y199766D01* X-252727Y199771D01* X-252647Y199814D01* X-252563Y199850D01* X-252531Y199876D01* X-252510Y199887D01* X-252488Y199910D01* X-252432Y199955D01* X-195084Y257303D01* X-178660Y257303D01* X-178570Y257317D01* X-178479Y257325D01* X-178449Y257337D01* X-178417Y257342D01* X-178336Y257385D01* X-178252Y257421D01* X-178220Y257447D01* X-178200Y257458D01* X-178177Y257481D01* X-178121Y257526D01* X-166406Y269241D01* X-164971Y269241D01* X-164900Y269252D01* X-164829Y269254D01* X-164780Y269272D01* X-164728Y269280D01* X-164665Y269314D01* X-164598Y269339D01* X-164557Y269371D01* X-164511Y269396D01* X-164462Y269448D01* X-164406Y269492D01* X-164378Y269536D01* X-164342Y269574D01* X-164312Y269639D01* X-164273Y269699D01* X-164260Y269750D01* X-164238Y269797D01* X-164230Y269868D01* X-164213Y269938D01* X-164217Y269990D01* X-164211Y270041D01* X-164226Y270112D01* X-164232Y270183D01* X-164252Y270231D01* X-164263Y270282D01* X-164300Y270343D01* X-164328Y270409D01* X-164373Y270465D01* X-164389Y270493D01* X-164407Y270508D01* X-164433Y270540D01* X-166231Y272338D01* X-166231Y273475D01* X-166234Y273495D01* X-166232Y273514D01* X-166254Y273616D01* X-166270Y273718D01* X-166280Y273735D01* X-166284Y273755D01* X-166337Y273844D01* X-166385Y273935D01* X-166400Y273949D01* X-166410Y273966D01* X-166489Y274033D01* X-166564Y274105D01* X-166582Y274113D01* X-166597Y274126D01* X-166693Y274165D01* X-166787Y274208D01* X-166807Y274210D01* X-166825Y274218D01* X-166992Y274236D01* X-233962Y274236D01* X-233982Y274233D01* X-234001Y274235D01* X-234103Y274213D01* X-234205Y274197D01* X-234222Y274187D01* X-234242Y274183D01* X-234331Y274130D01* X-234422Y274081D01* X-234436Y274067D01* X-234453Y274057D01* X-234520Y273978D01* X-234592Y273903D01* X-234600Y273885D01* X-234613Y273870D01* X-234652Y273774D01* X-234695Y273680D01* X-234697Y273660D01* X-234705Y273642D01* X-234723Y273475D01* X-234723Y273390D01* X-234709Y273300D01* X-234701Y273209D01* X-234695Y273195D01* X-234695Y256640D01* X-235886Y255449D01* X-238069Y255449D01* X-238089Y255446D01* X-238108Y255448D01* X-238210Y255426D01* X-238312Y255410D01* X-238329Y255400D01* X-238349Y255396D01* X-238438Y255343D01* X-238529Y255294D01* X-238543Y255280D01* X-238560Y255270D01* X-238627Y255191D01* X-238699Y255116D01* X-238707Y255098D01* X-238720Y255083D01* X-238759Y254987D01* X-238802Y254893D01* X-238804Y254873D01* X-238812Y254855D01* X-238830Y254688D01* X-238830Y222337D01* X-242120Y219047D01* X-242173Y218973D01* X-242233Y218904D01* X-242245Y218873D01* X-242264Y218847D01* X-242291Y218760D01* X-242325Y218675D01* X-242329Y218634D01* X-242336Y218612D01* X-242335Y218580D01* X-242343Y218509D01* X-242343Y215990D01* X-244708Y213625D01* X-248052Y213625D01* X-250417Y215990D01* X-250417Y219334D01* X-248078Y221673D01* X-248036Y221731D01* X-247987Y221783D01* X-247965Y221830D01* X-247935Y221872D01* X-247913Y221941D01* X-247883Y222006D01* X-247877Y222058D01* X-247862Y222108D01* X-247864Y222179D01* X-247856Y222250D01* X-247867Y222301D01* X-247869Y222353D01* X-247893Y222421D01* X-247908Y222491D01* X-247935Y222536D01* X-247953Y222584D01* X-247998Y222640D01* X-248035Y222702D01* X-248074Y222736D01* X-248107Y222776D01* X-248167Y222815D01* X-248221Y222862D01* X-248270Y222881D01* X-248314Y222909D01* X-248383Y222927D01* X-248450Y222954D01* X-248521Y222962D01* X-248552Y222970D01* X-248575Y222968D01* X-248616Y222972D01* X-249819Y222972D01* X-252184Y225337D01* X-252184Y227856D01* X-252198Y227946D01* X-252206Y228037D01* X-252218Y228066D01* X-252223Y228098D01* X-252266Y228178D01* X-252266Y271110D01* X-241833Y281543D01* X-240617Y282759D01* X-240575Y282817D01* X-240526Y282869D01* X-240504Y282916D01* X-240473Y282958D01* X-240452Y283027D01* X-240422Y283092D01* X-240416Y283144D01* X-240401Y283194D01* X-240403Y283265D01* X-240395Y283336D01* X-240406Y283387D01* X-240407Y283439D01* X-240432Y283507D01* X-240447Y283577D01* X-240474Y283622D01* X-240492Y283670D01* X-240537Y283726D01* X-240573Y283788D01* X-240613Y283822D01* X-240645Y283862D01* X-240706Y283901D01* X-240760Y283948D01* X-240809Y283967D01* X-240852Y283995D01* X-240922Y284013D01* X-240988Y284040D01* X-241060Y284048D01* X-241091Y284056D01* X-241114Y284054D01* X-241155Y284058D01* X-304546Y284058D01* X-304566Y284055D01* X-304585Y284057D01* X-304687Y284035D01* X-304789Y284019D01* X-304806Y284009D01* X-304826Y284005D01* X-304915Y283952D01* X-305006Y283903D01* X-305020Y283889D01* X-305037Y283879D01* X-305104Y283800D01* X-305176Y283725D01* X-305184Y283707D01* X-305197Y283692D01* X-305236Y283596D01* X-305279Y283502D01* X-305281Y283482D01* X-305289Y283464D01* X-305307Y283297D01* X-305307Y243965D01* X-305305Y243954D01* X-305306Y243946D01* X-305305Y243939D01* X-305306Y243926D01* X-305284Y243824D01* X-305268Y243722D01* X-305258Y243705D01* X-305254Y243685D01* X-305201Y243596D01* X-305152Y243505D01* X-305138Y243491D01* X-305128Y243474D01* X-305049Y243407D01* X-304974Y243335D01* X-304956Y243327D01* X-304941Y243314D01* X-304845Y243275D01* X-304751Y243232D01* X-304731Y243230D01* X-304713Y243222D01* X-304546Y243204D01* X-273635Y243204D01* X-270659Y240228D01* X-270659Y206516D01* X-273635Y203540D01* X-403098Y203540D01* X-403118Y203537D01* X-403137Y203539D01* X-403239Y203517D01* X-403341Y203501D01* X-403358Y203491D01* X-403378Y203487D01* X-403467Y203434D01* X-403558Y203385D01* X-403572Y203371D01* X-403589Y203361D01* X-403656Y203282D01* X-403728Y203207D01* X-403736Y203189D01* X-403749Y203174D01* X-403788Y203078D01* X-403831Y202984D01* X-403833Y202964D01* X-403841Y202946D01* X-403859Y202779D01* X-403859Y163684D01* X-403842Y163579D01* X-403830Y163474D01* X-403822Y163458D01* X-403820Y163441D01* X-403770Y163347D01* X-403725Y163251D01* X-403713Y163239D01* X-403704Y163224D01* X-403628Y163151D01* X-403554Y163074D01* X-403539Y163066D01* X-403526Y163054D01* X-403430Y163010D01* X-403336Y162961D01* X-403315Y162956D01* X-403303Y162951D01* X-403272Y162947D01* X-403172Y162926D01* X-289656Y151872D01* X-289615Y151874D01* X-289589Y151874D01* X-289543Y151869D01* X-289477Y151884D01* G37* G36* X-181093Y73469D02* X-181093Y73469D01* X-181074Y73467D01* X-180972Y73489D01* X-180870Y73505D01* X-180853Y73515D01* X-180833Y73519D01* X-180744Y73572D01* X-180653Y73621D01* X-180639Y73635D01* X-180622Y73645D01* X-180554Y73724D01* X-180483Y73799D01* X-180475Y73817D01* X-180462Y73832D01* X-180423Y73928D01* X-180380Y74022D01* X-180377Y74041D01* X-180370Y74060D01* X-180351Y74227D01* X-180327Y117798D01* X-180343Y117898D01* X-180354Y118000D01* X-180363Y118019D01* X-180366Y118040D01* X-180414Y118131D01* X-180457Y118224D01* X-180471Y118239D01* X-180481Y118258D01* X-180556Y118328D01* X-180625Y118403D01* X-180648Y118416D01* X-180660Y118427D01* X-180689Y118441D01* X-180769Y118489D01* X-183312Y119663D01* X-193826Y127448D01* X-201244Y135764D01* X-201316Y135822D01* X-201384Y135887D01* X-201412Y135899D01* X-201435Y135919D01* X-201522Y135951D01* X-201607Y135990D01* X-201637Y135994D01* X-201666Y136004D01* X-201759Y136007D01* X-201851Y136017D01* X-201881Y136011D01* X-201912Y136012D01* X-202001Y135985D01* X-202092Y135965D01* X-202118Y135949D01* X-202147Y135941D01* X-202223Y135887D01* X-202303Y135839D01* X-202323Y135816D01* X-202348Y135798D01* X-202402Y135723D01* X-202463Y135652D01* X-202474Y135624D01* X-202492Y135599D01* X-202520Y135510D01* X-202555Y135424D01* X-202559Y135386D01* X-202566Y135364D01* X-202565Y135332D01* X-202573Y135257D01* X-202573Y134872D01* X-204938Y132507D01* X-208282Y132507D01* X-209012Y133237D01* X-209070Y133279D01* X-209122Y133328D01* X-209169Y133350D01* X-209211Y133380D01* X-209280Y133402D01* X-209345Y133432D01* X-209397Y133437D01* X-209447Y133453D01* X-209518Y133451D01* X-209589Y133459D01* X-209640Y133448D01* X-209692Y133446D01* X-209760Y133422D01* X-209830Y133407D01* X-209875Y133380D01* X-209923Y133362D01* X-209979Y133317D01* X-210041Y133280D01* X-210075Y133241D01* X-210115Y133208D01* X-210154Y133148D01* X-210201Y133094D01* X-210220Y133045D01* X-210248Y133001D01* X-210266Y132932D01* X-210293Y132865D01* X-210301Y132794D01* X-210309Y132763D01* X-210307Y132740D01* X-210311Y132699D01* X-210311Y104829D01* X-210297Y104739D01* X-210289Y104648D01* X-210277Y104619D01* X-210272Y104587D01* X-210229Y104506D01* X-210193Y104422D01* X-210167Y104390D01* X-210156Y104369D01* X-210133Y104347D01* X-210088Y104291D01* X-208307Y102510D01* X-208307Y99166D01* X-210672Y96801D01* X-214016Y96801D01* X-216381Y99166D01* X-216381Y99250D01* X-216384Y99270D01* X-216382Y99289D01* X-216404Y99391D01* X-216420Y99493D01* X-216430Y99510D01* X-216434Y99530D01* X-216487Y99619D01* X-216536Y99710D01* X-216550Y99724D01* X-216560Y99741D01* X-216639Y99808D01* X-216714Y99880D01* X-216732Y99888D01* X-216747Y99901D01* X-216843Y99940D01* X-216937Y99983D01* X-216957Y99985D01* X-216975Y99993D01* X-217142Y100011D01* X-228030Y100011D01* X-228775Y100756D01* X-228775Y117808D01* X-228030Y118553D01* X-221803Y118553D01* X-221713Y118567D01* X-221622Y118575D01* X-221593Y118587D01* X-221561Y118592D01* X-221480Y118635D01* X-221396Y118671D01* X-221364Y118697D01* X-221343Y118708D01* X-221321Y118731D01* X-221265Y118776D01* X-218572Y121469D01* X-218519Y121543D01* X-218459Y121612D01* X-218447Y121643D01* X-218428Y121669D01* X-218401Y121756D01* X-218367Y121841D01* X-218363Y121882D01* X-218356Y121904D01* X-218357Y121936D01* X-218349Y122007D01* X-218349Y122847D01* X-218360Y122917D01* X-218362Y122989D01* X-218380Y123038D01* X-218388Y123089D01* X-218422Y123153D01* X-218447Y123220D01* X-218479Y123261D01* X-218504Y123307D01* X-218556Y123356D01* X-218600Y123412D01* X-218644Y123440D01* X-218682Y123476D01* X-218747Y123506D01* X-218807Y123545D01* X-218858Y123558D01* X-218905Y123580D01* X-218976Y123588D01* X-219046Y123605D01* X-219098Y123601D01* X-219149Y123607D01* X-219220Y123592D01* X-219291Y123586D01* X-219339Y123566D01* X-219390Y123555D01* X-219451Y123518D01* X-219517Y123490D01* X-219573Y123445D01* X-219601Y123428D01* X-219616Y123411D01* X-219648Y123385D01* X-222180Y120853D01* X-225524Y120853D01* X-227378Y122707D01* X-227394Y122718D01* X-227407Y122734D01* X-227494Y122790D01* X-227578Y122850D01* X-227597Y122856D01* X-227614Y122867D01* X-227714Y122892D01* X-227813Y122922D01* X-227833Y122922D01* X-227852Y122927D01* X-227955Y122919D01* X-228059Y122916D01* X-228078Y122909D01* X-228097Y122908D01* X-228192Y122867D01* X-228290Y122832D01* X-228305Y122819D01* X-228324Y122811D01* X-228455Y122707D01* X-229976Y121185D01* X-233320Y121185D01* X-233876Y121741D01* X-233934Y121783D01* X-233986Y121832D01* X-234033Y121854D01* X-234075Y121884D01* X-234144Y121906D01* X-234209Y121936D01* X-234261Y121942D01* X-234311Y121957D01* X-234382Y121955D01* X-234453Y121963D01* X-234504Y121952D01* X-234556Y121950D01* X-234624Y121926D01* X-234694Y121911D01* X-234739Y121884D01* X-234787Y121866D01* X-234843Y121821D01* X-234905Y121784D01* X-234939Y121745D01* X-234979Y121712D01* X-235018Y121652D01* X-235065Y121598D01* X-235084Y121549D01* X-235112Y121505D01* X-235130Y121436D01* X-235157Y121369D01* X-235165Y121298D01* X-235173Y121267D01* X-235171Y121244D01* X-235175Y121203D01* X-235175Y94736D01* X-241010Y88901D01* X-241063Y88827D01* X-241123Y88758D01* X-241135Y88727D01* X-241154Y88701D01* X-241181Y88614D01* X-241215Y88529D01* X-241219Y88488D01* X-241226Y88466D01* X-241225Y88434D01* X-241233Y88363D01* X-241233Y76756D01* X-241978Y76011D01* X-253030Y76011D01* X-253775Y76756D01* X-253775Y93808D01* X-253030Y94553D01* X-241937Y94553D01* X-241881Y94513D01* X-241862Y94507D01* X-241846Y94496D01* X-241745Y94471D01* X-241646Y94440D01* X-241626Y94441D01* X-241607Y94436D01* X-241504Y94444D01* X-241401Y94447D01* X-241382Y94453D01* X-241362Y94455D01* X-241267Y94496D01* X-241169Y94531D01* X-241154Y94544D01* X-241135Y94551D01* X-241005Y94656D01* X-239464Y96197D01* X-239411Y96271D01* X-239351Y96340D01* X-239339Y96371D01* X-239320Y96397D01* X-239293Y96484D01* X-239259Y96569D01* X-239255Y96610D01* X-239248Y96632D01* X-239249Y96664D01* X-239241Y96735D01* X-239241Y129550D01* X-233168Y135623D01* X-233115Y135697D01* X-233056Y135766D01* X-233044Y135796D01* X-233025Y135822D01* X-232998Y135909D01* X-232964Y135994D01* X-232959Y136035D01* X-232953Y136057D01* X-232953Y136090D01* X-232945Y136161D01* X-232945Y157263D01* X-232954Y157315D01* X-232953Y157368D01* X-232974Y157436D01* X-232985Y157506D01* X-233010Y157552D01* X-233025Y157603D01* X-233067Y157661D01* X-233100Y157723D01* X-233138Y157760D01* X-233169Y157802D01* X-233227Y157844D01* X-233279Y157893D01* X-233326Y157915D01* X-233369Y157946D01* X-233437Y157966D01* X-233502Y157996D01* X-233554Y158002D01* X-233604Y158018D01* X-233675Y158016D01* X-233746Y158023D01* X-233798Y158012D01* X-233850Y158011D01* X-233917Y157986D01* X-233987Y157971D01* X-234032Y157944D01* X-234081Y157926D01* X-234137Y157881D01* X-234198Y157845D01* X-234232Y157805D01* X-234273Y157772D01* X-234311Y157712D01* X-234358Y157658D01* X-234377Y157609D01* X-234406Y157565D01* X-234439Y157456D01* X-234449Y157430D01* X-234451Y157417D01* X-234455Y157404D01* X-235247Y153205D01* X-241090Y140149D01* X-249804Y128806D01* X-260912Y119794D01* X-264044Y118291D01* X-264115Y118241D01* X-264147Y118225D01* X-264154Y118218D01* X-264206Y118186D01* X-264224Y118166D01* X-264246Y118150D01* X-264303Y118073D01* X-264366Y117999D01* X-264376Y117974D01* X-264392Y117953D01* X-264422Y117861D01* X-264458Y117771D01* X-264461Y117738D01* X-264468Y117718D01* X-264467Y117685D01* X-264476Y117605D01* X-264462Y74227D01* X-264459Y74207D01* X-264461Y74188D01* X-264439Y74086D01* X-264422Y73984D01* X-264413Y73967D01* X-264409Y73947D01* X-264356Y73858D01* X-264307Y73767D01* X-264293Y73753D01* X-264283Y73736D01* X-264204Y73669D01* X-264129Y73597D01* X-264111Y73589D01* X-264096Y73576D01* X-263999Y73537D01* X-263906Y73494D01* X-263886Y73492D01* X-263868Y73484D01* X-263701Y73466D01* X-181113Y73466D01* X-181093Y73469D01* G37* G36* X-219600Y196751D02* X-219600Y196751D01* X-219529Y196756D01* X-219481Y196777D01* X-219430Y196788D01* X-219369Y196824D01* X-219303Y196852D01* X-219247Y196897D01* X-219219Y196914D01* X-219204Y196932D01* X-219172Y196957D01* X-214214Y201915D01* X-212800Y203329D01* X-171505Y203329D01* X-171435Y203340D01* X-171363Y203342D01* X-171314Y203360D01* X-171263Y203369D01* X-171199Y203402D01* X-171132Y203427D01* X-171091Y203459D01* X-171045Y203484D01* X-170996Y203536D01* X-170940Y203580D01* X-170912Y203624D01* X-170876Y203662D01* X-170846Y203727D01* X-170807Y203787D01* X-170794Y203838D01* X-170772Y203885D01* X-170764Y203956D01* X-170747Y204026D01* X-170751Y204078D01* X-170745Y204130D01* X-170760Y204200D01* X-170766Y204271D01* X-170786Y204319D01* X-170797Y204370D01* X-170834Y204431D01* X-170862Y204497D01* X-170907Y204553D01* X-170924Y204581D01* X-170941Y204596D01* X-170967Y204628D01* X-171677Y205338D01* X-171677Y208682D01* X-169312Y211047D01* X-165968Y211047D01* X-164469Y209548D01* X-164395Y209495D01* X-164326Y209435D01* X-164295Y209423D01* X-164269Y209404D01* X-164182Y209377D01* X-164097Y209343D01* X-164056Y209339D01* X-164034Y209332D01* X-164002Y209333D01* X-163931Y209325D01* X-148819Y209325D01* X-148729Y209339D01* X-148638Y209347D01* X-148609Y209359D01* X-148577Y209364D01* X-148496Y209407D01* X-148412Y209443D01* X-148380Y209469D01* X-148359Y209480D01* X-148337Y209503D01* X-148281Y209548D01* X-143000Y214829D01* X-142947Y214903D01* X-142887Y214973D01* X-142875Y215003D01* X-142856Y215029D01* X-142829Y215116D01* X-142795Y215201D01* X-142791Y215242D01* X-142784Y215264D01* X-142785Y215296D01* X-142777Y215367D01* X-142777Y227375D01* X-142788Y227445D01* X-142790Y227517D01* X-142808Y227566D01* X-142816Y227617D01* X-142850Y227681D01* X-142875Y227748D01* X-142907Y227789D01* X-142932Y227835D01* X-142984Y227884D01* X-143028Y227940D01* X-143072Y227968D01* X-143110Y228004D01* X-143175Y228034D01* X-143235Y228073D01* X-143286Y228086D01* X-143333Y228108D01* X-143404Y228116D01* X-143474Y228133D01* X-143526Y228129D01* X-143577Y228135D01* X-143648Y228120D01* X-143719Y228114D01* X-143767Y228094D01* X-143818Y228083D01* X-143879Y228046D01* X-143945Y228018D01* X-144001Y227973D01* X-144029Y227956D01* X-144044Y227939D01* X-144076Y227913D01* X-144378Y227611D01* X-147722Y227611D01* X-150087Y229976D01* X-150087Y233320D01* X-148306Y235101D01* X-148260Y235165D01* X-148242Y235184D01* X-148238Y235192D01* X-148193Y235244D01* X-148181Y235275D01* X-148162Y235301D01* X-148135Y235388D01* X-148101Y235473D01* X-148097Y235514D01* X-148090Y235536D01* X-148091Y235568D01* X-148083Y235639D01* X-148083Y259331D01* X-148097Y259421D01* X-148105Y259512D01* X-148117Y259541D01* X-148122Y259573D01* X-148165Y259654D01* X-148201Y259738D01* X-148227Y259770D01* X-148238Y259791D01* X-148261Y259813D01* X-148306Y259869D01* X-154430Y265993D01* X-154488Y266035D01* X-154540Y266084D01* X-154587Y266106D01* X-154629Y266136D01* X-154698Y266158D01* X-154763Y266188D01* X-154815Y266193D01* X-154865Y266209D01* X-154936Y266207D01* X-155007Y266215D01* X-155058Y266204D01* X-155110Y266202D01* X-155178Y266178D01* X-155248Y266163D01* X-155293Y266136D01* X-155341Y266118D01* X-155397Y266073D01* X-155459Y266036D01* X-155493Y265997D01* X-155533Y265964D01* X-155572Y265904D01* X-155619Y265849D01* X-155638Y265801D01* X-155666Y265757D01* X-155684Y265688D01* X-155711Y265621D01* X-155719Y265550D01* X-155727Y265519D01* X-155725Y265496D01* X-155729Y265455D01* X-155729Y265028D01* X-158094Y262663D01* X-161438Y262663D01* X-162711Y263936D01* X-162785Y263989D01* X-162855Y264049D01* X-162885Y264061D01* X-162911Y264080D01* X-162998Y264107D01* X-163083Y264141D01* X-163124Y264145D01* X-163146Y264152D01* X-163178Y264151D01* X-163249Y264159D01* X-163986Y264159D01* X-164076Y264145D01* X-164167Y264137D01* X-164197Y264125D01* X-164229Y264120D01* X-164310Y264077D01* X-164394Y264041D01* X-164426Y264015D01* X-164446Y264004D01* X-164469Y263981D01* X-164525Y263936D01* X-176240Y252221D01* X-192664Y252221D01* X-192754Y252207D01* X-192845Y252199D01* X-192874Y252187D01* X-192906Y252182D01* X-192987Y252139D01* X-193071Y252103D01* X-193103Y252077D01* X-193124Y252066D01* X-193146Y252043D01* X-193202Y251998D01* X-213042Y232158D01* X-213084Y232100D01* X-213133Y232048D01* X-213155Y232001D01* X-213186Y231959D01* X-213207Y231890D01* X-213237Y231825D01* X-213243Y231773D01* X-213258Y231723D01* X-213256Y231652D01* X-213264Y231581D01* X-213253Y231530D01* X-213252Y231478D01* X-213227Y231410D01* X-213212Y231340D01* X-213185Y231295D01* X-213167Y231247D01* X-213122Y231191D01* X-213086Y231129D01* X-213046Y231095D01* X-213013Y231055D01* X-212953Y231016D01* X-212899Y230969D01* X-212850Y230950D01* X-212807Y230922D01* X-212737Y230904D01* X-212670Y230877D01* X-212599Y230869D01* X-212568Y230861D01* X-212545Y230863D01* X-212504Y230859D01* X-175775Y230859D01* X-175685Y230873D01* X-175594Y230881D01* X-175565Y230893D01* X-175533Y230898D01* X-175452Y230941D01* X-175368Y230977D01* X-175336Y231003D01* X-175315Y231014D01* X-175293Y231037D01* X-175237Y231082D01* X-164880Y241439D01* X-164827Y241513D01* X-164767Y241582D01* X-164755Y241613D01* X-164736Y241639D01* X-164709Y241726D01* X-164675Y241811D01* X-164671Y241852D01* X-164664Y241874D01* X-164665Y241906D01* X-164657Y241977D01* X-164657Y244496D01* X-162831Y246322D01* X-162819Y246338D01* X-162804Y246350D01* X-162748Y246438D01* X-162688Y246521D01* X-162682Y246540D01* X-162671Y246557D01* X-162646Y246658D01* X-162615Y246757D01* X-162616Y246776D01* X-162611Y246796D01* X-162619Y246899D01* X-162622Y247002D01* X-162628Y247021D01* X-162630Y247041D01* X-162670Y247136D01* X-162706Y247233D01* X-162718Y247249D01* X-162726Y247267D01* X-162831Y247398D01* X-164459Y249026D01* X-164459Y252370D01* X-162094Y254735D01* X-158750Y254735D01* X-156385Y252370D01* X-156385Y251121D01* X-156371Y251031D01* X-156363Y250940D01* X-156351Y250911D01* X-156346Y250879D01* X-156303Y250798D01* X-156267Y250714D01* X-156241Y250682D01* X-156230Y250661D01* X-156207Y250639D01* X-156162Y250583D01* X-153161Y247582D01* X-153161Y236366D01* X-154352Y235175D01* X-158951Y235175D01* X-159041Y235161D01* X-159132Y235153D01* X-159162Y235141D01* X-159194Y235136D01* X-159274Y235093D01* X-159358Y235057D01* X-159390Y235031D01* X-159411Y235020D01* X-159433Y234997D01* X-159489Y234952D01* X-176987Y217454D01* X-177029Y217396D01* X-177078Y217344D01* X-177100Y217297D01* X-177131Y217255D01* X-177152Y217186D01* X-177182Y217121D01* X-177188Y217069D01* X-177203Y217019D01* X-177201Y216948D01* X-177209Y216877D01* X-177198Y216826D01* X-177197Y216774D01* X-177172Y216706D01* X-177157Y216636D01* X-177130Y216591D01* X-177112Y216543D01* X-177067Y216487D01* X-177031Y216425D01* X-176991Y216391D01* X-176959Y216351D01* X-176898Y216312D01* X-176844Y216265D01* X-176795Y216246D01* X-176752Y216218D01* X-176682Y216200D01* X-176616Y216173D01* X-176544Y216165D01* X-176513Y216157D01* X-176490Y216159D01* X-176449Y216155D01* X-172861Y216155D01* X-172771Y216169D01* X-172680Y216177D01* X-172651Y216189D01* X-172619Y216194D01* X-172538Y216237D01* X-172454Y216273D01* X-172422Y216299D01* X-172401Y216310D01* X-172379Y216333D01* X-172323Y216378D01* X-167212Y221489D01* X-154613Y221489D01* X-154523Y221503D01* X-154432Y221511D01* X-154403Y221523D01* X-154371Y221528D01* X-154290Y221571D01* X-154206Y221607D01* X-154174Y221633D01* X-154153Y221644D01* X-154131Y221667D01* X-154075Y221712D01* X-152294Y223493D01* X-148950Y223493D01* X-146585Y221128D01* X-146585Y217784D01* X-148950Y215419D01* X-152294Y215419D01* X-154075Y217200D01* X-154149Y217253D01* X-154219Y217313D01* X-154249Y217325D01* X-154275Y217344D01* X-154362Y217371D01* X-154447Y217405D01* X-154488Y217409D01* X-154510Y217416D01* X-154542Y217415D01* X-154613Y217423D01* X-165213Y217423D01* X-165303Y217409D01* X-165394Y217401D01* X-165423Y217389D01* X-165455Y217384D01* X-165536Y217341D01* X-165620Y217305D01* X-165652Y217279D01* X-165673Y217268D01* X-165695Y217245D01* X-165751Y217200D01* X-170862Y212089D01* X-219464Y212089D01* X-219554Y212075D01* X-219645Y212067D01* X-219674Y212055D01* X-219706Y212050D01* X-219787Y212007D01* X-219871Y211971D01* X-219903Y211945D01* X-219924Y211934D01* X-219946Y211911D01* X-220002Y211866D01* X-220248Y211620D01* X-220301Y211546D01* X-220361Y211476D01* X-220373Y211446D01* X-220392Y211420D01* X-220419Y211333D01* X-220453Y211248D01* X-220457Y211207D01* X-220464Y211185D01* X-220463Y211153D01* X-220471Y211082D01* X-220471Y197496D01* X-220460Y197425D01* X-220458Y197353D01* X-220440Y197304D01* X-220432Y197253D01* X-220398Y197190D01* X-220373Y197122D01* X-220341Y197081D01* X-220316Y197035D01* X-220265Y196986D01* X-220220Y196930D01* X-220176Y196902D01* X-220138Y196866D01* X-220073Y196836D01* X-220013Y196797D01* X-219962Y196784D01* X-219915Y196762D01* X-219844Y196755D01* X-219774Y196737D01* X-219722Y196741D01* X-219671Y196735D01* X-219600Y196751D01* G37* G36* X-181213Y219217D02* X-181213Y219217D01* X-181122Y219225D01* X-181093Y219237D01* X-181061Y219242D01* X-180980Y219285D01* X-180896Y219321D01* X-180864Y219347D01* X-180843Y219358D01* X-180821Y219381D01* X-180765Y219426D01* X-174697Y225494D01* X-174655Y225552D01* X-174606Y225604D01* X-174584Y225651D01* X-174554Y225693D01* X-174532Y225762D01* X-174502Y225827D01* X-174497Y225879D01* X-174481Y225929D01* X-174483Y226000D01* X-174475Y226071D01* X-174486Y226122D01* X-174488Y226174D01* X-174512Y226242D01* X-174527Y226312D01* X-174554Y226357D01* X-174572Y226405D01* X-174617Y226461D01* X-174654Y226523D01* X-174693Y226557D01* X-174726Y226597D01* X-174786Y226636D01* X-174841Y226683D01* X-174889Y226702D01* X-174933Y226730D01* X-175002Y226748D01* X-175069Y226775D01* X-175140Y226783D01* X-175171Y226791D01* X-175194Y226789D01* X-175235Y226793D01* X-213381Y226793D01* X-213471Y226779D01* X-213562Y226771D01* X-213591Y226759D01* X-213623Y226754D01* X-213704Y226711D01* X-213788Y226675D01* X-213820Y226649D01* X-213841Y226638D01* X-213863Y226615D01* X-213919Y226570D01* X-219987Y220502D01* X-220029Y220444D01* X-220078Y220392D01* X-220100Y220345D01* X-220131Y220303D01* X-220152Y220234D01* X-220182Y220169D01* X-220188Y220117D01* X-220203Y220067D01* X-220201Y219996D01* X-220209Y219925D01* X-220198Y219874D01* X-220197Y219822D01* X-220172Y219754D01* X-220157Y219684D01* X-220130Y219639D01* X-220112Y219591D01* X-220067Y219535D01* X-220031Y219473D01* X-219991Y219439D01* X-219958Y219399D01* X-219898Y219360D01* X-219844Y219313D01* X-219795Y219294D01* X-219751Y219266D01* X-219682Y219248D01* X-219615Y219221D01* X-219544Y219213D01* X-219513Y219205D01* X-219490Y219207D01* X-219449Y219203D01* X-181303Y219203D01* X-181213Y219217D01* G37* %LPC*% G36* X-203030Y76011D02* X-203030Y76011D01* X-203775Y76756D01* X-203775Y93808D01* X-203030Y94553D01* X-191978Y94553D01* X-191233Y93808D01* X-191233Y76756D01* X-191978Y76011D01* X-203030Y76011D01* G37* %LPD*% %LPC*% G36* X-363890Y173227D02* X-363890Y173227D01* X-363689Y174500D01* X-363108Y176287D01* X-362255Y177961D01* X-361150Y179482D01* X-359822Y180810D01* X-358301Y181915D01* X-356627Y182768D01* X-354840Y183349D01* X-353567Y183550D01* X-353567Y173227D01* X-363890Y173227D01* G37* %LPD*% %LPC*% G36* X-161198Y171449D02* X-161198Y171449D01* X-160997Y172722D01* X-160416Y174509D01* X-159563Y176183D01* X-158458Y177704D01* X-157130Y179032D01* X-155609Y180137D01* X-153935Y180990D01* X-152148Y181571D01* X-150875Y181772D01* X-150875Y171449D01* X-161198Y171449D01* G37* %LPD*% %LPC*% G36* X-350521Y173227D02* X-350521Y173227D01* X-350521Y183550D01* X-349248Y183349D01* X-347461Y182768D01* X-345787Y181915D01* X-344266Y180810D01* X-342938Y179482D01* X-341833Y177961D01* X-340980Y176287D01* X-340399Y174500D01* X-340198Y173227D01* X-350521Y173227D01* G37* %LPD*% %LPC*% G36* X-354840Y160059D02* X-354840Y160059D01* X-356627Y160640D01* X-358301Y161493D01* X-359822Y162598D01* X-361150Y163926D01* X-362255Y165447D01* X-363108Y167121D01* X-363689Y168908D01* X-363890Y170181D01* X-353567Y170181D01* X-353567Y159858D01* X-354840Y160059D01* G37* %LPD*% %LPC*% G36* X-152148Y158281D02* X-152148Y158281D01* X-153935Y158862D01* X-155609Y159715D01* X-157130Y160820D01* X-158458Y162148D01* X-159563Y163669D01* X-160416Y165343D01* X-160997Y167130D01* X-161198Y168403D01* X-150875Y168403D01* X-150875Y158080D01* X-152148Y158281D01* G37* %LPD*% %LPC*% G36* X-147829Y171449D02* X-147829Y171449D01* X-147829Y181772D01* X-146556Y181571D01* X-144769Y180990D01* X-143095Y180137D01* X-141574Y179032D01* X-140246Y177704D01* X-139141Y176183D01* X-138288Y174509D01* X-137707Y172722D01* X-137506Y171449D01* X-147829Y171449D01* G37* %LPD*% %LPC*% G36* X-147829Y168403D02* X-147829Y168403D01* X-137506Y168403D01* X-137707Y167130D01* X-138288Y165343D01* X-139141Y163669D01* X-140246Y162148D01* X-141574Y160820D01* X-143095Y159715D01* X-144769Y158862D01* X-146556Y158281D01* X-147829Y158080D01* X-147829Y168403D01* G37* %LPD*% %LPC*% G36* X-350521Y170181D02* X-350521Y170181D01* X-340198Y170181D01* X-340399Y168908D01* X-340980Y167121D01* X-341833Y165447D01* X-342938Y163926D01* X-344266Y162598D01* X-345787Y161493D01* X-347461Y160640D01* X-349248Y160059D01* X-350521Y159858D01* X-350521Y170181D01* G37* %LPD*% %LPC*% G36* X-149353Y169925D02* X-149353Y169925D01* X-149353Y169927D01* X-149351Y169927D01* X-149351Y169925D01* X-149353Y169925D01* G37* %LPD*% %LPC*% G36* X-352045Y171703D02* X-352045Y171703D01* X-352045Y171705D01* X-352043Y171705D01* X-352043Y171703D01* X-352045Y171703D01* G37* %LPD*% D10* X-116840Y174244D03* X-149352Y169926D03* X-352044Y171704D03* X-315976Y168656D03* D11* X-222504Y109282D03* X-197504Y85282D03* X-247504Y85282D03* D12* X-202946Y101092D03* X-219710Y256540D03* X-219710Y240030D03* X-200660Y256540D03* X-186690Y240030D03* X-186690Y223520D03* X-201930Y223520D03* X-42164Y180594D03* X-56388Y236474D03* X-78740Y280416D03* X-244602Y124968D03* X-294132Y174498D03* X-152146Y274320D03* X-155702Y259080D03* X-291846Y279908D03* X-293624Y256540D03* X-246888Y188468D03* X-114808Y221234D03* X-281178Y256540D03* X-281432Y246634D03* X-293624Y246634D03* X-291846Y270510D03* D13* X-230913Y135004D02* X-237208Y128708D01* X-230913Y135004D02* X-230913Y176344D01* X-236324Y181755D01* X-237208Y128708D02* X-237208Y95578D01* X-236324Y181755D02* X-287419Y181755D01* X-289814Y184150D01* D12* X-289814Y184150D03* D13* X-237208Y95578D02* X-247504Y85282D01* D12* X-243911Y256974D03* D13* X-240863Y253926D01* X-240863Y223179D01* X-246380Y217662D01* D12* X-246380Y217662D03* X-162194Y274010D03* X-238760Y274237D03* D13* X-236728Y272205D01* X-236728Y257482D01* X-243403Y257482D01* X-243911Y256974D01* X-236728Y276269D02* X-164761Y276269D01* X-236728Y276269D02* X-238760Y274237D01* X-162502Y274010D02* X-162194Y274010D01* X-162502Y274010D02* X-164761Y276269D01* D12* X-146050Y231648D03* D13* X-158584Y273022D02* X-161206Y273022D01* X-162194Y274010D01* X-146050Y260488D02* X-146050Y231648D01* X-146050Y260488D02* X-158584Y273022D01* D12* X-124714Y222250D03* D13* X-123698Y224790D02* X-106023Y242465D01* X-123698Y224790D02* X-123698Y223266D01* X-124714Y222250D01* X-68376Y242465D02* X-64312Y238401D01* X-68376Y242465D02* X-106023Y242465D01* D12* X-64312Y238401D03* X-206610Y136544D03* D13* X-208896Y138830D02* X-208896Y142132D01* X-208896Y138830D02* X-206610Y136544D01* X-208896Y142132D02* X-215499Y148735D01* D12* X-47733Y202438D03* D13* X-95256Y172673D02* X-115216Y192632D01* X-95256Y172673D02* X-65526Y172673D01* X-46181Y192018D01* X-46181Y200886D01* X-47733Y202438D01* X-215499Y193336D02* X-215499Y148735D01* X-215499Y193336D02* X-214530Y194305D01* X-214529Y194378D01* X-212827Y196008D01* X-129794Y198248D02* X-124178Y192632D01* X-115216Y192632D01* X-129794Y198248D02* X-210587Y198248D01* X-212827Y196008D01* D12* X-212344Y100838D03* D13* X-212344Y141124D01* X-218666Y147447D01* X-218666Y194588D01* X-211958Y201296D01* X-117490Y201296D02* X-114180Y197986D01* X-117490Y201296D02* X-211958Y201296D01* D12* X-114180Y197986D03* X-248147Y227009D03* D13* X-250233Y229095D02* X-250233Y270268D01* X-250233Y229095D02* X-248147Y227009D01* X-250233Y270268D02* X-239577Y280924D01* X-125984Y280924D01* X-125591Y280531D01* X-106426Y280531D01* D12* X-106426Y280531D03* X-167640Y207010D03* X-145908Y269860D03* D13* X-145908Y265927D01* X-140744Y214210D02* X-147662Y207292D01* X-140744Y214210D02* X-140744Y260762D01* X-145908Y265927D01* X-167358Y207292D02* X-167640Y207010D01* X-167358Y207292D02* X-147662Y207292D01* D12* X-238066Y202506D03* D13* X-238066Y188536D01* X-237998Y188468D01* D12* X-237998Y188468D03* D13* X-216316Y120878D02* X-216288Y120878D01* X-216316Y120878D02* X-216316Y135036D01* X-166370Y219456D02* X-150622Y219456D01* X-166370Y219456D02* X-171704Y214122D01* X-220621Y214122D01* D12* X-150622Y219456D03* D13* X-221714Y140434D02* X-216316Y135036D01* X-222504Y181100D02* X-222504Y212239D01* X-221714Y180311D02* X-221714Y140434D01* X-222504Y212239D02* X-220621Y214122D01* X-222504Y181100D02* X-221714Y180311D01* X-216288Y120878D02* X-222504Y114662D01* X-222504Y109282D01* D12* X-223852Y124890D03* D13* X-224762Y139172D02* X-224762Y179048D01* X-226568Y180854D02* X-226568Y212485D01* X-226568Y180854D02* X-224762Y179048D01* X-226568Y212485D02* X-221883Y217170D01* X-223852Y138262D02* X-223852Y124890D01* X-223852Y138262D02* X-224762Y139172D01* X-221883Y217170D02* X-180146Y217170D01* X-160108Y237208D02* X-155194Y237208D01* X-160108Y237208D02* X-180146Y217170D01* X-155194Y237208D02* X-155194Y246740D01* X-159152Y250698D01* X-160422Y250698D01* D12* X-160422Y250698D03* X-159766Y266700D03* D14* X-165354Y266700D01* X-177292Y254762D01* X-194031Y254762D01* X-294045Y197191D02* X-315976Y175260D01* X-315976Y168656D01* X-251602Y197191D02* X-194031Y254762D01* X-251602Y197191D02* X-294045Y197191D01* D12* X-231648Y125222D03* D13* X-227810Y177786D02* X-230124Y180099D01* X-230124Y213240D01* X-227810Y129060D02* X-231648Y125222D01* X-227810Y129060D02* X-227810Y177786D01* X-230124Y213240D02* X-214538Y228826D01* X-174618Y228826D02* X-160620Y242824D01* D12* X-160620Y242824D03* D13* X-174618Y228826D02* X-214538Y228826D01* M02* ================================================ FILE: PCB/GerberFiles/copper_inner_l2.gbr ================================================ G04 EAGLE Gerber RS-274X export* G75* %MOMM*% %FSLAX34Y34*% %LPD*% %INEAGLE Copper Layer 2*% %IPPOS*% %AMOC8* 5,1,8,0,0,1.08239X$1,22.5*% G01* %ADD10C,1.524000*% %ADD11C,0.553200*% G36* X-181093Y73469D02* X-181093Y73469D01* X-181074Y73467D01* X-180972Y73489D01* X-180870Y73505D01* X-180853Y73515D01* X-180833Y73519D01* X-180744Y73572D01* X-180653Y73621D01* X-180639Y73635D01* X-180622Y73645D01* X-180554Y73724D01* X-180483Y73799D01* X-180475Y73817D01* X-180462Y73832D01* X-180423Y73928D01* X-180380Y74022D01* X-180377Y74041D01* X-180370Y74060D01* X-180351Y74227D01* X-180327Y117798D01* X-180343Y117898D01* X-180354Y118000D01* X-180363Y118019D01* X-180366Y118040D01* X-180414Y118131D01* X-180457Y118224D01* X-180471Y118239D01* X-180481Y118258D01* X-180556Y118328D01* X-180625Y118403D01* X-180648Y118416D01* X-180660Y118427D01* X-180689Y118441D01* X-180769Y118489D01* X-183312Y119663D01* X-193826Y127448D01* X-201244Y135764D01* X-201316Y135822D01* X-201384Y135887D01* X-201412Y135899D01* X-201435Y135919D01* X-201522Y135951D01* X-201607Y135990D01* X-201637Y135994D01* X-201666Y136004D01* X-201759Y136007D01* X-201851Y136017D01* X-201881Y136011D01* X-201912Y136012D01* X-202001Y135985D01* X-202092Y135965D01* X-202118Y135949D01* X-202147Y135941D01* X-202223Y135887D01* X-202303Y135839D01* X-202323Y135816D01* X-202348Y135798D01* X-202402Y135723D01* X-202463Y135652D01* X-202474Y135624D01* X-202492Y135599D01* X-202520Y135510D01* X-202555Y135424D01* X-202559Y135386D01* X-202566Y135364D01* X-202565Y135332D01* X-202573Y135257D01* X-202573Y134872D01* X-204938Y132507D01* X-208282Y132507D01* X-210647Y134872D01* X-210647Y138216D01* X-208282Y140581D01* X-205798Y140581D01* X-205704Y140596D01* X-205609Y140605D01* X-205583Y140616D01* X-205555Y140620D01* X-205471Y140665D01* X-205384Y140703D01* X-205363Y140722D01* X-205338Y140736D01* X-205272Y140805D01* X-205202Y140869D01* X-205188Y140893D01* X-205168Y140914D01* X-205128Y141000D01* X-205082Y141083D01* X-205077Y141111D01* X-205065Y141137D01* X-205054Y141232D01* X-205037Y141325D01* X-205041Y141353D01* X-205038Y141381D01* X-205058Y141475D01* X-205071Y141569D01* X-205085Y141601D01* X-205090Y141622D01* X-205107Y141650D01* X-205139Y141722D01* X-209074Y148541D01* X-213170Y160965D01* X-214651Y173963D01* X-214071Y180285D01* X-214072Y180304D01* X-214068Y180335D01* X-213821Y190109D01* X-213822Y190117D01* X-213821Y190129D01* X-213821Y192235D01* X-212294Y193687D01* X-212289Y193693D01* X-212280Y193700D01* X-210791Y195189D01* X-208686Y195136D01* X-208678Y195137D01* X-208666Y195136D01* X-181653Y195136D01* X-181623Y195141D01* X-181518Y195148D01* X-179961Y195429D01* X-179735Y195272D01* X-179714Y195262D01* X-179696Y195246D01* X-179603Y195209D01* X-179513Y195166D01* X-179490Y195163D01* X-179468Y195154D01* X-179301Y195136D01* X-179025Y195136D01* X-177907Y194017D01* X-177882Y194000D01* X-177803Y193930D01* X-176504Y193028D01* X-176455Y192757D01* X-176447Y192735D01* X-176445Y192712D01* X-176406Y192620D01* X-176373Y192526D01* X-176358Y192507D01* X-176349Y192485D01* X-176244Y192354D01* X-176049Y192160D01* X-176049Y190578D01* X-176044Y190548D01* X-176037Y190443D01* X-167998Y145900D01* X-167994Y145887D01* X-167993Y145874D01* X-167953Y145772D01* X-167916Y145668D01* X-167908Y145657D01* X-167903Y145645D01* X-167832Y145561D01* X-167764Y145474D01* X-167753Y145467D01* X-167744Y145457D01* X-167650Y145400D01* X-167558Y145339D01* X-167546Y145336D01* X-167534Y145329D01* X-167427Y145305D01* X-167321Y145277D01* X-167307Y145278D01* X-167294Y145275D01* X-167127Y145284D01* X-28580Y167866D01* X-28502Y167892D01* X-28483Y167897D01* X-28459Y167900D01* X-28455Y167903D01* X-28422Y167910D01* X-28386Y167931D01* X-28346Y167945D01* X-28281Y167994D01* X-28272Y168000D01* X-28242Y168016D01* X-28237Y168020D01* X-28211Y168036D01* X-28184Y168068D01* X-28150Y168093D01* X-28105Y168159D01* X-28072Y168194D01* X-28068Y168203D01* X-28051Y168223D01* X-28035Y168262D01* X-28012Y168297D01* X-27992Y168367D01* X-27969Y168417D01* X-27967Y168431D01* X-27959Y168451D01* X-27953Y168506D01* X-27945Y168533D01* X-27947Y168562D01* X-27941Y168618D01* X-27941Y255429D01* X-27942Y255439D01* X-27942Y255444D01* X-27948Y255471D01* X-27955Y255515D01* X-27961Y255602D01* X-27975Y255636D01* X-27980Y255672D01* X-28021Y255748D01* X-28054Y255829D01* X-28083Y255866D01* X-28096Y255889D01* X-28118Y255910D01* X-28158Y255961D01* X-55400Y283829D01* X-55477Y283886D01* X-55550Y283948D01* X-55576Y283958D01* X-55598Y283975D01* X-55689Y284004D01* X-55778Y284040D01* X-55813Y284044D01* X-55833Y284050D01* X-55866Y284050D01* X-55945Y284058D01* X-102407Y284058D01* X-102477Y284047D01* X-102549Y284045D01* X-102598Y284027D01* X-102649Y284019D01* X-102713Y283985D01* X-102780Y283960D01* X-102821Y283928D01* X-102867Y283903D01* X-102916Y283851D01* X-102972Y283807D01* X-103000Y283763D01* X-103036Y283725D01* X-103066Y283660D01* X-103105Y283600D01* X-103118Y283549D01* X-103140Y283502D01* X-103148Y283431D01* X-103165Y283361D01* X-103161Y283309D01* X-103167Y283258D01* X-103152Y283187D01* X-103146Y283116D01* X-103126Y283068D01* X-103115Y283017D01* X-103078Y282956D01* X-103050Y282890D01* X-103005Y282834D01* X-102988Y282806D01* X-102971Y282791D01* X-102945Y282759D01* X-102389Y282203D01* X-102389Y278859D01* X-104754Y276494D01* X-108098Y276494D01* X-110463Y278859D01* X-110463Y282203D01* X-109907Y282759D01* X-109865Y282817D01* X-109816Y282869D01* X-109794Y282916D01* X-109764Y282958D01* X-109742Y283027D01* X-109712Y283092D01* X-109706Y283144D01* X-109691Y283194D01* X-109693Y283265D01* X-109685Y283336D01* X-109696Y283387D01* X-109698Y283439D01* X-109722Y283507D01* X-109737Y283577D01* X-109764Y283622D01* X-109782Y283670D01* X-109827Y283726D01* X-109864Y283788D01* X-109903Y283822D01* X-109936Y283862D01* X-109996Y283901D01* X-110050Y283948D01* X-110099Y283967D01* X-110143Y283995D01* X-110212Y284013D01* X-110279Y284040D01* X-110350Y284048D01* X-110381Y284056D01* X-110404Y284054D01* X-110445Y284058D01* X-304546Y284058D01* X-304566Y284055D01* X-304585Y284057D01* X-304687Y284035D01* X-304789Y284019D01* X-304806Y284009D01* X-304826Y284005D01* X-304915Y283952D01* X-305006Y283903D01* X-305020Y283889D01* X-305037Y283879D01* X-305104Y283800D01* X-305176Y283725D01* X-305184Y283707D01* X-305197Y283692D01* X-305236Y283596D01* X-305279Y283502D01* X-305281Y283482D01* X-305289Y283464D01* X-305307Y283297D01* X-305307Y243965D01* X-305305Y243954D01* X-305306Y243946D01* X-305305Y243939D01* X-305306Y243926D01* X-305284Y243824D01* X-305268Y243722D01* X-305258Y243705D01* X-305254Y243685D01* X-305201Y243596D01* X-305152Y243505D01* X-305138Y243491D01* X-305128Y243474D01* X-305049Y243407D01* X-304974Y243335D01* X-304956Y243327D01* X-304941Y243314D01* X-304845Y243275D01* X-304751Y243232D01* X-304731Y243230D01* X-304713Y243222D01* X-304546Y243204D01* X-273635Y243204D01* X-270659Y240228D01* X-270659Y206516D01* X-273635Y203540D01* X-403098Y203540D01* X-403118Y203537D01* X-403137Y203539D01* X-403239Y203517D01* X-403341Y203501D01* X-403358Y203491D01* X-403378Y203487D01* X-403467Y203434D01* X-403558Y203385D01* X-403572Y203371D01* X-403589Y203361D01* X-403656Y203282D01* X-403728Y203207D01* X-403736Y203189D01* X-403749Y203174D01* X-403788Y203078D01* X-403831Y202984D01* X-403833Y202964D01* X-403841Y202946D01* X-403859Y202779D01* X-403859Y163684D01* X-403842Y163579D01* X-403830Y163474D01* X-403822Y163458D01* X-403820Y163441D01* X-403770Y163347D01* X-403725Y163251D01* X-403713Y163239D01* X-403704Y163224D01* X-403628Y163151D01* X-403554Y163074D01* X-403539Y163066D01* X-403526Y163054D01* X-403430Y163010D01* X-403336Y162961D01* X-403315Y162956D01* X-403303Y162951D01* X-403272Y162947D01* X-403172Y162926D01* X-289656Y151872D01* X-289615Y151874D01* X-289589Y151874D01* X-289543Y151869D01* X-289477Y151884D01* X-289410Y151888D01* X-289358Y151909D01* X-289302Y151922D01* X-289245Y151956D01* X-289183Y151981D01* X-289140Y152019D01* X-289122Y152029D01* X-289091Y152048D01* X-289048Y152099D01* X-288997Y152142D01* X-288968Y152191D01* X-288952Y152208D01* X-288950Y152212D01* X-288931Y152235D01* X-288906Y152297D01* X-288872Y152354D01* X-288862Y152402D01* X-288849Y152431D01* X-288848Y152442D01* X-288839Y152463D01* X-288828Y152565D01* X-288822Y152595D01* X-288823Y152608D01* X-288821Y152630D01* X-288821Y176268D01* X-285845Y179244D01* X-238150Y179244D01* X-238136Y179246D01* X-238113Y179245D01* X-236112Y179340D01* X-236100Y179335D01* X-236057Y179308D01* X-235987Y179290D01* X-235928Y179266D01* X-234516Y177854D01* X-234505Y177846D01* X-234490Y177829D01* X-233007Y176481D01* X-233002Y176470D01* X-232991Y176420D01* X-232954Y176357D01* X-232929Y176299D01* X-232929Y174303D01* X-232927Y174289D01* X-232928Y174266D01* X-232594Y167261D01* X-235247Y153205D01* X-241090Y140149D01* X-249804Y128806D01* X-260912Y119794D01* X-264044Y118291D01* X-264115Y118241D01* X-264147Y118225D01* X-264154Y118218D01* X-264206Y118186D01* X-264224Y118166D01* X-264246Y118150D01* X-264303Y118073D01* X-264366Y117999D01* X-264376Y117974D01* X-264392Y117953D01* X-264422Y117861D01* X-264458Y117771D01* X-264461Y117738D01* X-264468Y117718D01* X-264467Y117685D01* X-264476Y117605D01* X-264462Y74227D01* X-264459Y74207D01* X-264461Y74188D01* X-264439Y74086D01* X-264422Y73984D01* X-264413Y73967D01* X-264409Y73947D01* X-264356Y73858D01* X-264307Y73767D01* X-264293Y73753D01* X-264283Y73736D01* X-264204Y73669D01* X-264129Y73597D01* X-264111Y73589D01* X-264096Y73576D01* X-263999Y73537D01* X-263906Y73494D01* X-263886Y73492D01* X-263868Y73484D01* X-263701Y73466D01* X-181113Y73466D01* X-181093Y73469D01* G37* %LPC*% G36* X-87679Y180494D02* X-87679Y180494D01* X-95133Y182492D01* X-101817Y186350D01* X-107274Y191807D01* X-109477Y195625D01* X-109552Y195715D01* X-109627Y195809D01* X-109631Y195812D01* X-109633Y195815D01* X-109733Y195878D01* X-109834Y195942D01* X-109838Y195943D01* X-109842Y195946D01* X-109957Y195973D01* X-110072Y196002D01* X-110077Y196002D01* X-110081Y196003D01* X-110200Y195993D01* X-110318Y195983D01* X-110322Y195982D01* X-110326Y195981D01* X-110436Y195933D01* X-110544Y195887D01* X-110548Y195884D01* X-110551Y195883D01* X-110561Y195873D01* X-110675Y195782D01* X-112508Y193949D01* X-115852Y193949D01* X-118217Y196314D01* X-118217Y199658D01* X-115852Y202023D01* X-113071Y202023D01* X-112954Y202042D01* X-112836Y202060D01* X-112832Y202062D01* X-112828Y202062D01* X-112723Y202118D01* X-112617Y202173D01* X-112614Y202176D01* X-112611Y202177D01* X-112529Y202263D01* X-112446Y202349D01* X-112444Y202353D01* X-112441Y202356D01* X-112391Y202464D01* X-112340Y202571D01* X-112339Y202575D01* X-112338Y202579D01* X-112325Y202697D01* X-112310Y202815D01* X-112311Y202820D01* X-112311Y202823D01* X-112313Y202837D01* X-112335Y202981D01* X-113130Y205945D01* X-113130Y213663D01* X-111132Y221117D01* X-107274Y227801D01* X-101817Y233258D01* X-95133Y237116D01* X-87679Y239114D01* X-79961Y239114D01* X-72507Y237116D01* X-68594Y234857D01* X-68571Y234849D01* X-68552Y234834D01* X-68456Y234805D01* X-68364Y234770D01* X-68339Y234769D01* X-68316Y234762D01* X-68217Y234765D01* X-68118Y234761D01* X-68095Y234768D01* X-68071Y234768D01* X-67977Y234803D01* X-67882Y234831D01* X-67862Y234845D01* X-67840Y234853D01* X-67762Y234915D01* X-67681Y234972D01* X-67666Y234992D01* X-67648Y235007D01* X-67594Y235090D01* X-67535Y235170D01* X-67528Y235193D01* X-67515Y235214D01* X-67490Y235310D01* X-67460Y235405D01* X-67460Y235429D01* X-67454Y235452D01* X-67462Y235551D01* X-67464Y235651D01* X-67472Y235673D01* X-67474Y235697D01* X-67512Y235789D01* X-67546Y235882D01* X-67560Y235901D01* X-67570Y235924D01* X-67675Y236055D01* X-68349Y236729D01* X-68349Y240073D01* X-65984Y242437D01* X-62640Y242437D01* X-60275Y240073D01* X-60275Y236729D01* X-62640Y234364D01* X-65092Y234364D01* X-65163Y234352D01* X-65234Y234350D01* X-65283Y234333D01* X-65335Y234324D01* X-65398Y234291D01* X-65465Y234266D01* X-65506Y234233D01* X-65552Y234209D01* X-65601Y234157D01* X-65657Y234112D01* X-65686Y234068D01* X-65721Y234031D01* X-65752Y233966D01* X-65790Y233905D01* X-65803Y233855D01* X-65825Y233808D01* X-65833Y233736D01* X-65850Y233667D01* X-65846Y233615D01* X-65852Y233563D01* X-65837Y233493D01* X-65831Y233422D01* X-65811Y233374D01* X-65800Y233323D01* X-65763Y233261D01* X-65735Y233195D01* X-65690Y233139D01* X-65674Y233112D01* X-65656Y233096D01* X-65630Y233064D01* X-60366Y227801D01* X-56508Y221117D01* X-54510Y213663D01* X-54510Y205945D01* X-56508Y198491D01* X-60366Y191807D01* X-65823Y186350D01* X-72507Y182492D01* X-79961Y180494D01* X-87679Y180494D01* G37* %LPD*% %LPC*% G36* X-118608Y165353D02* X-118608Y165353D01* X-121876Y166707D01* X-124377Y169208D01* X-125731Y172476D01* X-125731Y176012D01* X-124377Y179280D01* X-121876Y181781D01* X-118608Y183135D01* X-115072Y183135D01* X-111804Y181781D01* X-109303Y179280D01* X-107949Y176012D01* X-107949Y172476D01* X-109303Y169208D01* X-111804Y166707D01* X-115072Y165353D01* X-118608Y165353D01* G37* %LPD*% %LPC*% G36* X-317744Y159765D02* X-317744Y159765D01* X-321012Y161119D01* X-323513Y163620D01* X-324867Y166888D01* X-324867Y170424D01* X-323513Y173692D01* X-321012Y176193D01* X-317744Y177547D01* X-314208Y177547D01* X-310940Y176193D01* X-308439Y173692D01* X-307085Y170424D01* X-307085Y166888D01* X-308439Y163620D01* X-310940Y161119D01* X-314208Y159765D01* X-317744Y159765D01* G37* %LPD*% %LPC*% G36* X-248052Y213625D02* X-248052Y213625D01* X-250417Y215990D01* X-250417Y219334D01* X-248078Y221673D01* X-248036Y221731D01* X-247987Y221783D01* X-247965Y221830D01* X-247935Y221872D01* X-247913Y221941D01* X-247883Y222006D01* X-247877Y222058D01* X-247862Y222108D01* X-247864Y222179D01* X-247856Y222250D01* X-247867Y222301D01* X-247869Y222353D01* X-247893Y222421D01* X-247908Y222491D01* X-247935Y222536D01* X-247953Y222584D01* X-247998Y222640D01* X-248035Y222702D01* X-248074Y222736D01* X-248107Y222776D01* X-248167Y222815D01* X-248221Y222862D01* X-248270Y222881D01* X-248314Y222909D01* X-248383Y222927D01* X-248450Y222954D01* X-248521Y222962D01* X-248552Y222970D01* X-248575Y222968D01* X-248616Y222972D01* X-249819Y222972D01* X-252184Y225337D01* X-252184Y228681D01* X-249819Y231046D01* X-246475Y231046D01* X-244110Y228681D01* X-244110Y225337D01* X-246449Y222998D01* X-246491Y222940D01* X-246540Y222888D01* X-246562Y222841D01* X-246592Y222799D01* X-246614Y222730D01* X-246644Y222665D01* X-246650Y222613D01* X-246665Y222563D01* X-246663Y222492D01* X-246671Y222421D01* X-246660Y222370D01* X-246658Y222318D01* X-246634Y222250D01* X-246619Y222180D01* X-246592Y222135D01* X-246574Y222087D01* X-246529Y222031D01* X-246492Y221969D01* X-246453Y221935D01* X-246420Y221895D01* X-246360Y221856D01* X-246306Y221809D01* X-246257Y221790D01* X-246213Y221762D01* X-246144Y221744D01* X-246077Y221717D01* X-246006Y221709D01* X-245975Y221701D01* X-245952Y221703D01* X-245911Y221699D01* X-244708Y221699D01* X-242343Y219334D01* X-242343Y215990D01* X-244708Y213625D01* X-248052Y213625D01* G37* %LPD*% %LPC*% G36* X-161438Y262663D02* X-161438Y262663D01* X-163803Y265028D01* X-163803Y268372D01* X-163501Y268674D01* X-163459Y268732D01* X-163410Y268784D01* X-163388Y268831D01* X-163358Y268873D01* X-163336Y268942D01* X-163306Y269007D01* X-163300Y269059D01* X-163285Y269109D01* X-163287Y269180D01* X-163279Y269251D01* X-163290Y269302D01* X-163292Y269354D01* X-163316Y269422D01* X-163331Y269492D01* X-163358Y269537D01* X-163376Y269585D01* X-163421Y269641D01* X-163458Y269703D01* X-163497Y269737D01* X-163530Y269777D01* X-163590Y269816D01* X-163644Y269863D01* X-163693Y269882D01* X-163737Y269910D01* X-163806Y269928D01* X-163831Y269938D01* X-166231Y272338D01* X-166231Y275682D01* X-163866Y278047D01* X-160522Y278047D01* X-158157Y275682D01* X-158157Y272338D01* X-158459Y272036D01* X-158501Y271978D01* X-158550Y271926D01* X-158572Y271879D01* X-158602Y271837D01* X-158623Y271768D01* X-158654Y271703D01* X-158659Y271651D01* X-158675Y271601D01* X-158673Y271530D01* X-158681Y271459D01* X-158670Y271408D01* X-158668Y271356D01* X-158644Y271288D01* X-158629Y271218D01* X-158602Y271173D01* X-158584Y271125D01* X-158539Y271069D01* X-158502Y271007D01* X-158463Y270973D01* X-158430Y270933D01* X-158370Y270894D01* X-158315Y270847D01* X-158267Y270828D01* X-158223Y270800D01* X-158154Y270782D01* X-158129Y270772D01* X-155729Y268372D01* X-155729Y265028D01* X-158094Y262663D01* X-161438Y262663D01* G37* %LPD*% %LPC*% G36* X-162292Y238787D02* X-162292Y238787D01* X-164657Y241152D01* X-164657Y244496D01* X-162831Y246322D01* X-162819Y246338D01* X-162804Y246350D01* X-162748Y246438D01* X-162688Y246521D01* X-162682Y246540D01* X-162671Y246557D01* X-162646Y246658D01* X-162615Y246757D01* X-162616Y246776D01* X-162611Y246796D01* X-162619Y246899D01* X-162622Y247002D01* X-162628Y247021D01* X-162630Y247041D01* X-162670Y247136D01* X-162706Y247233D01* X-162718Y247249D01* X-162726Y247267D01* X-162831Y247398D01* X-164459Y249026D01* X-164459Y252370D01* X-162094Y254735D01* X-158750Y254735D01* X-156385Y252370D01* X-156385Y249026D01* X-158211Y247200D01* X-158223Y247184D01* X-158238Y247172D01* X-158294Y247084D01* X-158354Y247001D01* X-158360Y246982D01* X-158371Y246965D01* X-158396Y246864D01* X-158427Y246765D01* X-158426Y246746D01* X-158431Y246726D01* X-158423Y246623D01* X-158420Y246520D01* X-158414Y246501D01* X-158412Y246481D01* X-158372Y246386D01* X-158336Y246289D01* X-158323Y246273D01* X-158316Y246255D01* X-158211Y246124D01* X-156583Y244496D01* X-156583Y241152D01* X-158948Y238787D01* X-162292Y238787D01* G37* %LPD*% %LPC*% G36* X-225524Y120853D02* X-225524Y120853D01* X-227378Y122707D01* X-227394Y122718D01* X-227407Y122734D01* X-227494Y122790D01* X-227578Y122850D01* X-227597Y122856D01* X-227614Y122867D01* X-227714Y122892D01* X-227813Y122922D01* X-227833Y122922D01* X-227852Y122927D01* X-227955Y122919D01* X-228059Y122916D01* X-228078Y122909D01* X-228097Y122908D01* X-228192Y122867D01* X-228290Y122832D01* X-228305Y122819D01* X-228324Y122811D01* X-228455Y122707D01* X-229976Y121185D01* X-233320Y121185D01* X-235685Y123550D01* X-235685Y126894D01* X-233320Y129259D01* X-229976Y129259D01* X-228122Y127405D01* X-228106Y127393D01* X-228094Y127378D01* X-228006Y127322D01* X-227923Y127262D01* X-227904Y127256D01* X-227887Y127245D01* X-227786Y127220D01* X-227687Y127189D01* X-227668Y127190D01* X-227648Y127185D01* X-227545Y127193D01* X-227442Y127196D01* X-227423Y127202D01* X-227403Y127204D01* X-227308Y127244D01* X-227211Y127280D01* X-227195Y127292D01* X-227177Y127300D01* X-227046Y127405D01* X-225524Y128926D01* X-222180Y128926D01* X-219816Y126562D01* X-219816Y123218D01* X-222180Y120853D01* X-225524Y120853D01* G37* %LPD*% %LPC*% G36* X-147722Y227611D02* X-147722Y227611D01* X-150087Y229976D01* X-150087Y233320D01* X-147722Y235685D01* X-144378Y235685D01* X-142013Y233320D01* X-142013Y229976D01* X-144378Y227611D01* X-147722Y227611D01* G37* %LPD*% %LPC*% G36* X-126386Y218213D02* X-126386Y218213D01* X-128751Y220578D01* X-128751Y223922D01* X-126386Y226287D01* X-123042Y226287D01* X-120677Y223922D01* X-120677Y220578D01* X-123042Y218213D01* X-126386Y218213D01* G37* %LPD*% %LPC*% G36* X-152294Y215419D02* X-152294Y215419D01* X-154659Y217784D01* X-154659Y221128D01* X-152294Y223493D01* X-148950Y223493D01* X-146585Y221128D01* X-146585Y217784D01* X-148950Y215419D01* X-152294Y215419D01* G37* %LPD*% %LPC*% G36* X-169312Y202973D02* X-169312Y202973D01* X-171677Y205338D01* X-171677Y208682D01* X-169312Y211047D01* X-165968Y211047D01* X-163603Y208682D01* X-163603Y205338D01* X-165968Y202973D01* X-169312Y202973D01* G37* %LPD*% %LPC*% G36* X-239738Y198469D02* X-239738Y198469D01* X-242102Y200834D01* X-242102Y204178D01* X-239738Y206542D01* X-236394Y206542D01* X-234029Y204178D01* X-234029Y200834D01* X-236394Y198469D01* X-239738Y198469D01* G37* %LPD*% %LPC*% G36* X-49405Y198401D02* X-49405Y198401D01* X-51770Y200766D01* X-51770Y204110D01* X-49405Y206475D01* X-46061Y206475D01* X-43696Y204110D01* X-43696Y200766D01* X-46061Y198401D01* X-49405Y198401D01* G37* %LPD*% %LPC*% G36* X-239670Y184431D02* X-239670Y184431D01* X-242035Y186796D01* X-242035Y190140D01* X-239670Y192505D01* X-236326Y192505D01* X-233961Y190140D01* X-233961Y186796D01* X-236326Y184431D01* X-239670Y184431D01* G37* %LPD*% %LPC*% G36* X-291486Y180113D02* X-291486Y180113D01* X-293851Y182478D01* X-293851Y185822D01* X-291486Y188187D01* X-288142Y188187D01* X-285777Y185822D01* X-285777Y182478D01* X-288142Y180113D01* X-291486Y180113D01* G37* %LPD*% %LPC*% G36* X-245583Y252937D02* X-245583Y252937D01* X-247948Y255302D01* X-247948Y258646D01* X-245583Y261011D01* X-242239Y261011D01* X-239874Y258646D01* X-239874Y255302D01* X-242239Y252937D01* X-245583Y252937D01* G37* %LPD*% %LPC*% G36* X-240432Y270200D02* X-240432Y270200D01* X-242797Y272565D01* X-242797Y275909D01* X-240432Y278274D01* X-237088Y278274D01* X-234723Y275909D01* X-234723Y272565D01* X-237088Y270200D01* X-240432Y270200D01* G37* %LPD*% %LPC*% G36* X-147581Y265824D02* X-147581Y265824D01* X-149945Y268188D01* X-149945Y271533D01* X-147581Y273897D01* X-144236Y273897D01* X-141872Y271533D01* X-141872Y268188D01* X-144236Y265824D01* X-147581Y265824D01* G37* %LPD*% %LPC*% G36* X-214016Y96801D02* X-214016Y96801D01* X-216381Y99166D01* X-216381Y102510D01* X-214016Y104875D01* X-210672Y104875D01* X-208307Y102510D01* X-208307Y99166D01* X-210672Y96801D01* X-214016Y96801D01* G37* %LPD*% %LPC*% G36* X-159398Y171449D02* X-159398Y171449D01* X-159263Y172305D01* X-158768Y173826D01* X-158042Y175251D01* X-157102Y176545D01* X-155971Y177676D01* X-154677Y178616D01* X-153252Y179342D01* X-151731Y179837D01* X-150875Y179972D01* X-150875Y171449D01* X-159398Y171449D01* G37* %LPD*% %LPC*% G36* X-362090Y173227D02* X-362090Y173227D01* X-361955Y174083D01* X-361460Y175604D01* X-360734Y177029D01* X-359794Y178323D01* X-358663Y179454D01* X-357369Y180394D01* X-355944Y181120D01* X-354423Y181615D01* X-353567Y181750D01* X-353567Y173227D01* X-362090Y173227D01* G37* %LPD*% %LPC*% G36* X-147829Y171449D02* X-147829Y171449D01* X-147829Y179972D01* X-146973Y179837D01* X-145452Y179342D01* X-144027Y178616D01* X-142733Y177676D01* X-141602Y176545D01* X-140662Y175251D01* X-139936Y173826D01* X-139441Y172305D01* X-139306Y171449D01* X-147829Y171449D01* G37* %LPD*% %LPC*% G36* X-350521Y173227D02* X-350521Y173227D01* X-350521Y181750D01* X-349665Y181615D01* X-348144Y181120D01* X-346719Y180394D01* X-345425Y179454D01* X-344294Y178323D01* X-343354Y177029D01* X-342628Y175604D01* X-342133Y174083D01* X-341998Y173227D01* X-350521Y173227D01* G37* %LPD*% %LPC*% G36* X-354423Y161793D02* X-354423Y161793D01* X-355944Y162288D01* X-357369Y163014D01* X-358663Y163954D01* X-359794Y165085D01* X-360734Y166379D01* X-361460Y167804D01* X-361955Y169325D01* X-362090Y170181D01* X-353567Y170181D01* X-353567Y161658D01* X-354423Y161793D01* G37* %LPD*% %LPC*% G36* X-151731Y160015D02* X-151731Y160015D01* X-153252Y160510D01* X-154677Y161236D01* X-155971Y162176D01* X-157102Y163307D01* X-158042Y164601D01* X-158768Y166026D01* X-159263Y167547D01* X-159398Y168403D01* X-150875Y168403D01* X-150875Y159880D01* X-151731Y160015D01* G37* %LPD*% %LPC*% G36* X-147829Y168403D02* X-147829Y168403D01* X-139306Y168403D01* X-139441Y167547D01* X-139936Y166026D01* X-140662Y164601D01* X-141602Y163307D01* X-142733Y162176D01* X-144027Y161236D01* X-145452Y160510D01* X-146973Y160015D01* X-147829Y159880D01* X-147829Y168403D01* G37* %LPD*% %LPC*% G36* X-350521Y170181D02* X-350521Y170181D01* X-341998Y170181D01* X-342133Y169325D01* X-342628Y167804D01* X-343354Y166379D01* X-344294Y165085D01* X-345425Y163954D01* X-346719Y163014D01* X-348144Y162288D01* X-349665Y161793D01* X-350521Y161658D01* X-350521Y170181D01* G37* %LPD*% %LPC*% G36* X-352045Y171703D02* X-352045Y171703D01* X-352045Y171705D01* X-352043Y171705D01* X-352043Y171703D01* X-352045Y171703D01* G37* %LPD*% %LPC*% G36* X-149353Y169925D02* X-149353Y169925D01* X-149353Y169927D01* X-149351Y169927D01* X-149351Y169925D01* X-149353Y169925D01* G37* %LPD*% D10* X-116840Y174244D03* X-149352Y169926D03* X-352044Y171704D03* X-315976Y168656D03* D11* X-202946Y101092D03* X-219710Y256540D03* X-219710Y240030D03* X-200660Y256540D03* X-186690Y240030D03* X-186690Y223520D03* X-201930Y223520D03* X-42164Y180594D03* X-56388Y236474D03* X-78740Y280416D03* X-244602Y124968D03* X-294132Y174498D03* X-152146Y274320D03* X-155702Y259080D03* X-291846Y279908D03* X-293624Y256540D03* X-246888Y188468D03* X-114808Y221234D03* X-281178Y256540D03* X-281432Y246634D03* X-293624Y246634D03* X-291846Y270510D03* X-289814Y184150D03* X-243911Y256974D03* X-246380Y217662D03* X-162194Y274010D03* X-238760Y274237D03* X-146050Y231648D03* X-124714Y222250D03* X-64312Y238401D03* X-206610Y136544D03* X-47733Y202438D03* X-212344Y100838D03* X-114180Y197986D03* X-248147Y227009D03* X-106426Y280531D03* X-167640Y207010D03* X-145908Y269860D03* X-238066Y202506D03* X-237998Y188468D03* X-150622Y219456D03* X-223852Y124890D03* X-160422Y250698D03* X-159766Y266700D03* X-231648Y125222D03* X-160620Y242824D03* M02* ================================================ FILE: PCB/GerberFiles/copper_inner_l3.gbr ================================================ G04 EAGLE Gerber RS-274X export* G75* %MOMM*% %FSLAX34Y34*% %LPD*% %INEAGLE Copper Layer 15*% %IPPOS*% %AMOC8* 5,1,8,0,0,1.08239X$1,22.5*% G01* %ADD10C,1.524000*% %ADD11C,0.553200*% G36* X-181093Y73469D02* X-181093Y73469D01* X-181074Y73467D01* X-180972Y73489D01* X-180870Y73505D01* X-180853Y73515D01* X-180833Y73519D01* X-180744Y73572D01* X-180653Y73621D01* X-180639Y73635D01* X-180622Y73645D01* X-180554Y73724D01* X-180483Y73799D01* X-180475Y73817D01* X-180462Y73832D01* X-180423Y73928D01* X-180380Y74022D01* X-180377Y74041D01* X-180370Y74060D01* X-180351Y74227D01* X-180327Y117798D01* X-180343Y117898D01* X-180354Y118000D01* X-180363Y118019D01* X-180366Y118040D01* X-180414Y118131D01* X-180457Y118224D01* X-180471Y118239D01* X-180481Y118258D01* X-180556Y118328D01* X-180625Y118403D01* X-180648Y118416D01* X-180660Y118427D01* X-180689Y118441D01* X-180769Y118489D01* X-183312Y119663D01* X-193826Y127448D01* X-201244Y135764D01* X-201316Y135822D01* X-201384Y135887D01* X-201412Y135899D01* X-201435Y135919D01* X-201522Y135951D01* X-201607Y135990D01* X-201637Y135994D01* X-201666Y136004D01* X-201759Y136007D01* X-201851Y136017D01* X-201881Y136011D01* X-201912Y136012D01* X-202001Y135985D01* X-202092Y135965D01* X-202118Y135949D01* X-202147Y135941D01* X-202223Y135887D01* X-202303Y135839D01* X-202323Y135816D01* X-202348Y135798D01* X-202402Y135723D01* X-202463Y135652D01* X-202474Y135624D01* X-202492Y135599D01* X-202520Y135510D01* X-202555Y135424D01* X-202559Y135386D01* X-202566Y135364D01* X-202565Y135332D01* X-202573Y135257D01* X-202573Y134872D01* X-204938Y132507D01* X-208282Y132507D01* X-210647Y134872D01* X-210647Y138216D01* X-208282Y140581D01* X-205798Y140581D01* X-205704Y140596D01* X-205609Y140605D01* X-205583Y140616D01* X-205555Y140620D01* X-205471Y140665D01* X-205384Y140703D01* X-205363Y140722D01* X-205338Y140736D01* X-205272Y140805D01* X-205202Y140869D01* X-205188Y140893D01* X-205168Y140914D01* X-205128Y141000D01* X-205082Y141083D01* X-205077Y141111D01* X-205065Y141137D01* X-205054Y141232D01* X-205037Y141325D01* X-205041Y141353D01* X-205038Y141381D01* X-205058Y141475D01* X-205071Y141569D01* X-205085Y141601D01* X-205090Y141622D01* X-205107Y141650D01* X-205139Y141722D01* X-209074Y148541D01* X-213170Y160965D01* X-214651Y173963D01* X-214071Y180285D01* X-214072Y180304D01* X-214068Y180335D01* X-213821Y190109D01* X-213822Y190117D01* X-213821Y190129D01* X-213821Y192235D01* X-212294Y193687D01* X-212289Y193693D01* X-212280Y193700D01* X-210791Y195189D01* X-208686Y195136D01* X-208678Y195137D01* X-208666Y195136D01* X-181653Y195136D01* X-181623Y195141D01* X-181518Y195148D01* X-179961Y195429D01* X-179735Y195272D01* X-179714Y195262D01* X-179696Y195246D01* X-179603Y195209D01* X-179513Y195166D01* X-179490Y195163D01* X-179468Y195154D01* X-179301Y195136D01* X-179025Y195136D01* X-177907Y194017D01* X-177882Y194000D01* X-177803Y193930D01* X-176504Y193028D01* X-176455Y192757D01* X-176447Y192735D01* X-176445Y192712D01* X-176406Y192620D01* X-176373Y192526D01* X-176358Y192507D01* X-176349Y192485D01* X-176244Y192354D01* X-176049Y192160D01* X-176049Y190578D01* X-176044Y190548D01* X-176037Y190443D01* X-167998Y145900D01* X-167994Y145887D01* X-167993Y145874D01* X-167953Y145772D01* X-167916Y145668D01* X-167908Y145657D01* X-167903Y145645D01* X-167832Y145561D01* X-167764Y145474D01* X-167753Y145467D01* X-167744Y145457D01* X-167650Y145400D01* X-167558Y145339D01* X-167546Y145336D01* X-167534Y145329D01* X-167427Y145305D01* X-167321Y145277D01* X-167307Y145278D01* X-167294Y145275D01* X-167127Y145284D01* X-28580Y167866D01* X-28502Y167892D01* X-28483Y167897D01* X-28459Y167900D01* X-28455Y167903D01* X-28422Y167910D01* X-28386Y167931D01* X-28346Y167945D01* X-28281Y167994D01* X-28272Y168000D01* X-28242Y168016D01* X-28237Y168020D01* X-28211Y168036D01* X-28184Y168068D01* X-28150Y168093D01* X-28105Y168159D01* X-28072Y168194D01* X-28068Y168203D01* X-28051Y168223D01* X-28035Y168262D01* X-28012Y168297D01* X-27992Y168367D01* X-27969Y168417D01* X-27967Y168431D01* X-27959Y168451D01* X-27953Y168506D01* X-27945Y168533D01* X-27947Y168562D01* X-27941Y168618D01* X-27941Y255429D01* X-27942Y255439D01* X-27942Y255444D01* X-27948Y255471D01* X-27955Y255515D01* X-27961Y255602D01* X-27975Y255636D01* X-27980Y255672D01* X-28021Y255748D01* X-28054Y255829D01* X-28083Y255866D01* X-28096Y255889D01* X-28118Y255910D01* X-28158Y255961D01* X-55400Y283829D01* X-55477Y283886D01* X-55550Y283948D01* X-55576Y283958D01* X-55598Y283975D01* X-55689Y284004D01* X-55778Y284040D01* X-55813Y284044D01* X-55833Y284050D01* X-55866Y284050D01* X-55945Y284058D01* X-102407Y284058D01* X-102477Y284047D01* X-102549Y284045D01* X-102598Y284027D01* X-102649Y284019D01* X-102713Y283985D01* X-102780Y283960D01* X-102821Y283928D01* X-102867Y283903D01* X-102916Y283851D01* X-102972Y283807D01* X-103000Y283763D01* X-103036Y283725D01* X-103066Y283660D01* X-103105Y283600D01* X-103118Y283549D01* X-103140Y283502D01* X-103148Y283431D01* X-103165Y283361D01* X-103161Y283309D01* X-103167Y283258D01* X-103152Y283187D01* X-103146Y283116D01* X-103126Y283068D01* X-103115Y283017D01* X-103078Y282956D01* X-103050Y282890D01* X-103005Y282834D01* X-102988Y282806D01* X-102971Y282791D01* X-102945Y282759D01* X-102389Y282203D01* X-102389Y278859D01* X-104754Y276494D01* X-108098Y276494D01* X-110463Y278859D01* X-110463Y282203D01* X-109907Y282759D01* X-109865Y282817D01* X-109816Y282869D01* X-109794Y282916D01* X-109764Y282958D01* X-109742Y283027D01* X-109712Y283092D01* X-109706Y283144D01* X-109691Y283194D01* X-109693Y283265D01* X-109685Y283336D01* X-109696Y283387D01* X-109698Y283439D01* X-109722Y283507D01* X-109737Y283577D01* X-109764Y283622D01* X-109782Y283670D01* X-109827Y283726D01* X-109864Y283788D01* X-109903Y283822D01* X-109936Y283862D01* X-109996Y283901D01* X-110050Y283948D01* X-110099Y283967D01* X-110143Y283995D01* X-110212Y284013D01* X-110279Y284040D01* X-110350Y284048D01* X-110381Y284056D01* X-110404Y284054D01* X-110445Y284058D01* X-304546Y284058D01* X-304566Y284055D01* X-304585Y284057D01* X-304687Y284035D01* X-304789Y284019D01* X-304806Y284009D01* X-304826Y284005D01* X-304915Y283952D01* X-305006Y283903D01* X-305020Y283889D01* X-305037Y283879D01* X-305104Y283800D01* X-305176Y283725D01* X-305184Y283707D01* X-305197Y283692D01* X-305236Y283596D01* X-305279Y283502D01* X-305281Y283482D01* X-305289Y283464D01* X-305307Y283297D01* X-305307Y243965D01* X-305305Y243954D01* X-305306Y243946D01* X-305305Y243939D01* X-305306Y243926D01* X-305284Y243824D01* X-305268Y243722D01* X-305258Y243705D01* X-305254Y243685D01* X-305201Y243596D01* X-305152Y243505D01* X-305138Y243491D01* X-305128Y243474D01* X-305049Y243407D01* X-304974Y243335D01* X-304956Y243327D01* X-304941Y243314D01* X-304845Y243275D01* X-304751Y243232D01* X-304731Y243230D01* X-304713Y243222D01* X-304546Y243204D01* X-273635Y243204D01* X-270659Y240228D01* X-270659Y206516D01* X-273635Y203540D01* X-403098Y203540D01* X-403118Y203537D01* X-403137Y203539D01* X-403239Y203517D01* X-403341Y203501D01* X-403358Y203491D01* X-403378Y203487D01* X-403467Y203434D01* X-403558Y203385D01* X-403572Y203371D01* X-403589Y203361D01* X-403656Y203282D01* X-403728Y203207D01* X-403736Y203189D01* X-403749Y203174D01* X-403788Y203078D01* X-403831Y202984D01* X-403833Y202964D01* X-403841Y202946D01* X-403859Y202779D01* X-403859Y163684D01* X-403842Y163579D01* X-403830Y163474D01* X-403822Y163458D01* X-403820Y163441D01* X-403770Y163347D01* X-403725Y163251D01* X-403713Y163239D01* X-403704Y163224D01* X-403628Y163151D01* X-403554Y163074D01* X-403539Y163066D01* X-403526Y163054D01* X-403430Y163010D01* X-403336Y162961D01* X-403315Y162956D01* X-403303Y162951D01* X-403272Y162947D01* X-403172Y162926D01* X-289656Y151872D01* X-289615Y151874D01* X-289589Y151874D01* X-289543Y151869D01* X-289477Y151884D01* X-289410Y151888D01* X-289358Y151909D01* X-289302Y151922D01* X-289245Y151956D01* X-289183Y151981D01* X-289140Y152019D01* X-289122Y152029D01* X-289091Y152048D01* X-289048Y152099D01* X-288997Y152142D01* X-288968Y152191D01* X-288952Y152208D01* X-288950Y152212D01* X-288931Y152235D01* X-288906Y152297D01* X-288872Y152354D01* X-288862Y152402D01* X-288849Y152431D01* X-288848Y152442D01* X-288839Y152463D01* X-288828Y152565D01* X-288822Y152595D01* X-288823Y152608D01* X-288821Y152630D01* X-288821Y176268D01* X-285845Y179244D01* X-238150Y179244D01* X-238136Y179246D01* X-238113Y179245D01* X-236112Y179340D01* X-236100Y179335D01* X-236057Y179308D01* X-235987Y179290D01* X-235928Y179266D01* X-234516Y177854D01* X-234505Y177846D01* X-234490Y177829D01* X-233007Y176481D01* X-233002Y176470D01* X-232991Y176420D01* X-232954Y176357D01* X-232929Y176299D01* X-232929Y174303D01* X-232927Y174289D01* X-232928Y174266D01* X-232594Y167261D01* X-235247Y153205D01* X-241090Y140149D01* X-249804Y128806D01* X-260912Y119794D01* X-264044Y118291D01* X-264115Y118241D01* X-264147Y118225D01* X-264154Y118218D01* X-264206Y118186D01* X-264224Y118166D01* X-264246Y118150D01* X-264303Y118073D01* X-264366Y117999D01* X-264376Y117974D01* X-264392Y117953D01* X-264422Y117861D01* X-264458Y117771D01* X-264461Y117738D01* X-264468Y117718D01* X-264467Y117685D01* X-264476Y117605D01* X-264462Y74227D01* X-264459Y74207D01* X-264461Y74188D01* X-264439Y74086D01* X-264422Y73984D01* X-264413Y73967D01* X-264409Y73947D01* X-264356Y73858D01* X-264307Y73767D01* X-264293Y73753D01* X-264283Y73736D01* X-264204Y73669D01* X-264129Y73597D01* X-264111Y73589D01* X-264096Y73576D01* X-263999Y73537D01* X-263906Y73494D01* X-263886Y73492D01* X-263868Y73484D01* X-263701Y73466D01* X-181113Y73466D01* X-181093Y73469D01* G37* %LPC*% G36* X-87679Y180494D02* X-87679Y180494D01* X-95133Y182492D01* X-101817Y186350D01* X-107274Y191807D01* X-109477Y195625D01* X-109552Y195715D01* X-109627Y195809D01* X-109631Y195812D01* X-109633Y195815D01* X-109733Y195878D01* X-109834Y195942D01* X-109838Y195943D01* X-109842Y195946D01* X-109957Y195973D01* X-110072Y196002D01* X-110077Y196002D01* X-110081Y196003D01* X-110200Y195993D01* X-110318Y195983D01* X-110322Y195982D01* X-110326Y195981D01* X-110436Y195933D01* X-110544Y195887D01* X-110548Y195884D01* X-110551Y195883D01* X-110561Y195873D01* X-110675Y195782D01* X-112508Y193949D01* X-115852Y193949D01* X-118217Y196314D01* X-118217Y199658D01* X-115852Y202023D01* X-113071Y202023D01* X-112954Y202042D01* X-112836Y202060D01* X-112832Y202062D01* X-112828Y202062D01* X-112723Y202118D01* X-112617Y202173D01* X-112614Y202176D01* X-112611Y202177D01* X-112529Y202263D01* X-112446Y202349D01* X-112444Y202353D01* X-112441Y202356D01* X-112391Y202464D01* X-112340Y202571D01* X-112339Y202575D01* X-112338Y202579D01* X-112325Y202697D01* X-112310Y202815D01* X-112311Y202820D01* X-112311Y202823D01* X-112313Y202837D01* X-112335Y202981D01* X-113130Y205945D01* X-113130Y213663D01* X-111132Y221117D01* X-107274Y227801D01* X-101817Y233258D01* X-95133Y237116D01* X-87679Y239114D01* X-79961Y239114D01* X-72507Y237116D01* X-68594Y234857D01* X-68571Y234849D01* X-68552Y234834D01* X-68456Y234805D01* X-68364Y234770D01* X-68339Y234769D01* X-68316Y234762D01* X-68217Y234765D01* X-68118Y234761D01* X-68095Y234768D01* X-68071Y234768D01* X-67977Y234803D01* X-67882Y234831D01* X-67862Y234845D01* X-67840Y234853D01* X-67762Y234915D01* X-67681Y234972D01* X-67666Y234992D01* X-67648Y235007D01* X-67594Y235090D01* X-67535Y235170D01* X-67528Y235193D01* X-67515Y235214D01* X-67490Y235310D01* X-67460Y235405D01* X-67460Y235429D01* X-67454Y235452D01* X-67462Y235551D01* X-67464Y235651D01* X-67472Y235673D01* X-67474Y235697D01* X-67512Y235789D01* X-67546Y235882D01* X-67560Y235901D01* X-67570Y235924D01* X-67675Y236055D01* X-68349Y236729D01* X-68349Y240073D01* X-65984Y242437D01* X-62640Y242437D01* X-60275Y240073D01* X-60275Y236729D01* X-62640Y234364D01* X-65092Y234364D01* X-65163Y234352D01* X-65234Y234350D01* X-65283Y234333D01* X-65335Y234324D01* X-65398Y234291D01* X-65465Y234266D01* X-65506Y234233D01* X-65552Y234209D01* X-65601Y234157D01* X-65657Y234112D01* X-65686Y234068D01* X-65721Y234031D01* X-65752Y233966D01* X-65790Y233905D01* X-65803Y233855D01* X-65825Y233808D01* X-65833Y233736D01* X-65850Y233667D01* X-65846Y233615D01* X-65852Y233563D01* X-65837Y233493D01* X-65831Y233422D01* X-65811Y233374D01* X-65800Y233323D01* X-65763Y233261D01* X-65735Y233195D01* X-65690Y233139D01* X-65674Y233112D01* X-65656Y233096D01* X-65630Y233064D01* X-60366Y227801D01* X-56508Y221117D01* X-54510Y213663D01* X-54510Y205945D01* X-56508Y198491D01* X-60366Y191807D01* X-65823Y186350D01* X-72507Y182492D01* X-79961Y180494D01* X-87679Y180494D01* G37* %LPD*% %LPC*% G36* X-118608Y165353D02* X-118608Y165353D01* X-121876Y166707D01* X-124377Y169208D01* X-125731Y172476D01* X-125731Y176012D01* X-124377Y179280D01* X-121876Y181781D01* X-118608Y183135D01* X-115072Y183135D01* X-111804Y181781D01* X-109303Y179280D01* X-107949Y176012D01* X-107949Y172476D01* X-109303Y169208D01* X-111804Y166707D01* X-115072Y165353D01* X-118608Y165353D01* G37* %LPD*% %LPC*% G36* X-317744Y159765D02* X-317744Y159765D01* X-321012Y161119D01* X-323513Y163620D01* X-324867Y166888D01* X-324867Y170424D01* X-323513Y173692D01* X-321012Y176193D01* X-317744Y177547D01* X-314208Y177547D01* X-310940Y176193D01* X-308439Y173692D01* X-307085Y170424D01* X-307085Y166888D01* X-308439Y163620D01* X-310940Y161119D01* X-314208Y159765D01* X-317744Y159765D01* G37* %LPD*% %LPC*% G36* X-248052Y213625D02* X-248052Y213625D01* X-250417Y215990D01* X-250417Y219334D01* X-248078Y221673D01* X-248036Y221731D01* X-247987Y221783D01* X-247965Y221830D01* X-247935Y221872D01* X-247913Y221941D01* X-247883Y222006D01* X-247877Y222058D01* X-247862Y222108D01* X-247864Y222179D01* X-247856Y222250D01* X-247867Y222301D01* X-247869Y222353D01* X-247893Y222421D01* X-247908Y222491D01* X-247935Y222536D01* X-247953Y222584D01* X-247998Y222640D01* X-248035Y222702D01* X-248074Y222736D01* X-248107Y222776D01* X-248167Y222815D01* X-248221Y222862D01* X-248270Y222881D01* X-248314Y222909D01* X-248383Y222927D01* X-248450Y222954D01* X-248521Y222962D01* X-248552Y222970D01* X-248575Y222968D01* X-248616Y222972D01* X-249819Y222972D01* X-252184Y225337D01* X-252184Y228681D01* X-249819Y231046D01* X-246475Y231046D01* X-244110Y228681D01* X-244110Y225337D01* X-246449Y222998D01* X-246491Y222940D01* X-246540Y222888D01* X-246562Y222841D01* X-246592Y222799D01* X-246614Y222730D01* X-246644Y222665D01* X-246650Y222613D01* X-246665Y222563D01* X-246663Y222492D01* X-246671Y222421D01* X-246660Y222370D01* X-246658Y222318D01* X-246634Y222250D01* X-246619Y222180D01* X-246592Y222135D01* X-246574Y222087D01* X-246529Y222031D01* X-246492Y221969D01* X-246453Y221935D01* X-246420Y221895D01* X-246360Y221856D01* X-246306Y221809D01* X-246257Y221790D01* X-246213Y221762D01* X-246144Y221744D01* X-246077Y221717D01* X-246006Y221709D01* X-245975Y221701D01* X-245952Y221703D01* X-245911Y221699D01* X-244708Y221699D01* X-242343Y219334D01* X-242343Y215990D01* X-244708Y213625D01* X-248052Y213625D01* G37* %LPD*% %LPC*% G36* X-161438Y262663D02* X-161438Y262663D01* X-163803Y265028D01* X-163803Y268372D01* X-163501Y268674D01* X-163459Y268732D01* X-163410Y268784D01* X-163388Y268831D01* X-163358Y268873D01* X-163336Y268942D01* X-163306Y269007D01* X-163300Y269059D01* X-163285Y269109D01* X-163287Y269180D01* X-163279Y269251D01* X-163290Y269302D01* X-163292Y269354D01* X-163316Y269422D01* X-163331Y269492D01* X-163358Y269537D01* X-163376Y269585D01* X-163421Y269641D01* X-163458Y269703D01* X-163497Y269737D01* X-163530Y269777D01* X-163590Y269816D01* X-163644Y269863D01* X-163693Y269882D01* X-163737Y269910D01* X-163806Y269928D01* X-163831Y269938D01* X-166231Y272338D01* X-166231Y275682D01* X-163866Y278047D01* X-160522Y278047D01* X-158157Y275682D01* X-158157Y272338D01* X-158459Y272036D01* X-158501Y271978D01* X-158550Y271926D01* X-158572Y271879D01* X-158602Y271837D01* X-158623Y271768D01* X-158654Y271703D01* X-158659Y271651D01* X-158675Y271601D01* X-158673Y271530D01* X-158681Y271459D01* X-158670Y271408D01* X-158668Y271356D01* X-158644Y271288D01* X-158629Y271218D01* X-158602Y271173D01* X-158584Y271125D01* X-158539Y271069D01* X-158502Y271007D01* X-158463Y270973D01* X-158430Y270933D01* X-158370Y270894D01* X-158315Y270847D01* X-158267Y270828D01* X-158223Y270800D01* X-158154Y270782D01* X-158129Y270772D01* X-155729Y268372D01* X-155729Y265028D01* X-158094Y262663D01* X-161438Y262663D01* G37* %LPD*% %LPC*% G36* X-162292Y238787D02* X-162292Y238787D01* X-164657Y241152D01* X-164657Y244496D01* X-162831Y246322D01* X-162819Y246338D01* X-162804Y246350D01* X-162748Y246438D01* X-162688Y246521D01* X-162682Y246540D01* X-162671Y246557D01* X-162646Y246658D01* X-162615Y246757D01* X-162616Y246776D01* X-162611Y246796D01* X-162619Y246899D01* X-162622Y247002D01* X-162628Y247021D01* X-162630Y247041D01* X-162670Y247136D01* X-162706Y247233D01* X-162718Y247249D01* X-162726Y247267D01* X-162831Y247398D01* X-164459Y249026D01* X-164459Y252370D01* X-162094Y254735D01* X-158750Y254735D01* X-156385Y252370D01* X-156385Y249026D01* X-158211Y247200D01* X-158223Y247184D01* X-158238Y247172D01* X-158294Y247084D01* X-158354Y247001D01* X-158360Y246982D01* X-158371Y246965D01* X-158396Y246864D01* X-158427Y246765D01* X-158426Y246746D01* X-158431Y246726D01* X-158423Y246623D01* X-158420Y246520D01* X-158414Y246501D01* X-158412Y246481D01* X-158372Y246386D01* X-158336Y246289D01* X-158323Y246273D01* X-158316Y246255D01* X-158211Y246124D01* X-156583Y244496D01* X-156583Y241152D01* X-158948Y238787D01* X-162292Y238787D01* G37* %LPD*% %LPC*% G36* X-225524Y120853D02* X-225524Y120853D01* X-227378Y122707D01* X-227394Y122718D01* X-227407Y122734D01* X-227494Y122790D01* X-227578Y122850D01* X-227597Y122856D01* X-227614Y122867D01* X-227714Y122892D01* X-227813Y122922D01* X-227833Y122922D01* X-227852Y122927D01* X-227955Y122919D01* X-228059Y122916D01* X-228078Y122909D01* X-228097Y122908D01* X-228192Y122867D01* X-228290Y122832D01* X-228305Y122819D01* X-228324Y122811D01* X-228455Y122707D01* X-229976Y121185D01* X-233320Y121185D01* X-235685Y123550D01* X-235685Y126894D01* X-233320Y129259D01* X-229976Y129259D01* X-228122Y127405D01* X-228106Y127393D01* X-228094Y127378D01* X-228006Y127322D01* X-227923Y127262D01* X-227904Y127256D01* X-227887Y127245D01* X-227786Y127220D01* X-227687Y127189D01* X-227668Y127190D01* X-227648Y127185D01* X-227545Y127193D01* X-227442Y127196D01* X-227423Y127202D01* X-227403Y127204D01* X-227308Y127244D01* X-227211Y127280D01* X-227195Y127292D01* X-227177Y127300D01* X-227046Y127405D01* X-225524Y128926D01* X-222180Y128926D01* X-219816Y126562D01* X-219816Y123218D01* X-222180Y120853D01* X-225524Y120853D01* G37* %LPD*% %LPC*% G36* X-147722Y227611D02* X-147722Y227611D01* X-150087Y229976D01* X-150087Y233320D01* X-147722Y235685D01* X-144378Y235685D01* X-142013Y233320D01* X-142013Y229976D01* X-144378Y227611D01* X-147722Y227611D01* G37* %LPD*% %LPC*% G36* X-126386Y218213D02* X-126386Y218213D01* X-128751Y220578D01* X-128751Y223922D01* X-126386Y226287D01* X-123042Y226287D01* X-120677Y223922D01* X-120677Y220578D01* X-123042Y218213D01* X-126386Y218213D01* G37* %LPD*% %LPC*% G36* X-152294Y215419D02* X-152294Y215419D01* X-154659Y217784D01* X-154659Y221128D01* X-152294Y223493D01* X-148950Y223493D01* X-146585Y221128D01* X-146585Y217784D01* X-148950Y215419D01* X-152294Y215419D01* G37* %LPD*% %LPC*% G36* X-169312Y202973D02* X-169312Y202973D01* X-171677Y205338D01* X-171677Y208682D01* X-169312Y211047D01* X-165968Y211047D01* X-163603Y208682D01* X-163603Y205338D01* X-165968Y202973D01* X-169312Y202973D01* G37* %LPD*% %LPC*% G36* X-239738Y198469D02* X-239738Y198469D01* X-242102Y200834D01* X-242102Y204178D01* X-239738Y206542D01* X-236394Y206542D01* X-234029Y204178D01* X-234029Y200834D01* X-236394Y198469D01* X-239738Y198469D01* G37* %LPD*% %LPC*% G36* X-49405Y198401D02* X-49405Y198401D01* X-51770Y200766D01* X-51770Y204110D01* X-49405Y206475D01* X-46061Y206475D01* X-43696Y204110D01* X-43696Y200766D01* X-46061Y198401D01* X-49405Y198401D01* G37* %LPD*% %LPC*% G36* X-239670Y184431D02* X-239670Y184431D01* X-242035Y186796D01* X-242035Y190140D01* X-239670Y192505D01* X-236326Y192505D01* X-233961Y190140D01* X-233961Y186796D01* X-236326Y184431D01* X-239670Y184431D01* G37* %LPD*% %LPC*% G36* X-291486Y180113D02* X-291486Y180113D01* X-293851Y182478D01* X-293851Y185822D01* X-291486Y188187D01* X-288142Y188187D01* X-285777Y185822D01* X-285777Y182478D01* X-288142Y180113D01* X-291486Y180113D01* G37* %LPD*% %LPC*% G36* X-245583Y252937D02* X-245583Y252937D01* X-247948Y255302D01* X-247948Y258646D01* X-245583Y261011D01* X-242239Y261011D01* X-239874Y258646D01* X-239874Y255302D01* X-242239Y252937D01* X-245583Y252937D01* G37* %LPD*% %LPC*% G36* X-240432Y270200D02* X-240432Y270200D01* X-242797Y272565D01* X-242797Y275909D01* X-240432Y278274D01* X-237088Y278274D01* X-234723Y275909D01* X-234723Y272565D01* X-237088Y270200D01* X-240432Y270200D01* G37* %LPD*% %LPC*% G36* X-147581Y265824D02* X-147581Y265824D01* X-149945Y268188D01* X-149945Y271533D01* X-147581Y273897D01* X-144236Y273897D01* X-141872Y271533D01* X-141872Y268188D01* X-144236Y265824D01* X-147581Y265824D01* G37* %LPD*% %LPC*% G36* X-214016Y96801D02* X-214016Y96801D01* X-216381Y99166D01* X-216381Y102510D01* X-214016Y104875D01* X-210672Y104875D01* X-208307Y102510D01* X-208307Y99166D01* X-210672Y96801D01* X-214016Y96801D01* G37* %LPD*% %LPC*% G36* X-159398Y171449D02* X-159398Y171449D01* X-159263Y172305D01* X-158768Y173826D01* X-158042Y175251D01* X-157102Y176545D01* X-155971Y177676D01* X-154677Y178616D01* X-153252Y179342D01* X-151731Y179837D01* X-150875Y179972D01* X-150875Y171449D01* X-159398Y171449D01* G37* %LPD*% %LPC*% G36* X-362090Y173227D02* X-362090Y173227D01* X-361955Y174083D01* X-361460Y175604D01* X-360734Y177029D01* X-359794Y178323D01* X-358663Y179454D01* X-357369Y180394D01* X-355944Y181120D01* X-354423Y181615D01* X-353567Y181750D01* X-353567Y173227D01* X-362090Y173227D01* G37* %LPD*% %LPC*% G36* X-147829Y171449D02* X-147829Y171449D01* X-147829Y179972D01* X-146973Y179837D01* X-145452Y179342D01* X-144027Y178616D01* X-142733Y177676D01* X-141602Y176545D01* X-140662Y175251D01* X-139936Y173826D01* X-139441Y172305D01* X-139306Y171449D01* X-147829Y171449D01* G37* %LPD*% %LPC*% G36* X-350521Y173227D02* X-350521Y173227D01* X-350521Y181750D01* X-349665Y181615D01* X-348144Y181120D01* X-346719Y180394D01* X-345425Y179454D01* X-344294Y178323D01* X-343354Y177029D01* X-342628Y175604D01* X-342133Y174083D01* X-341998Y173227D01* X-350521Y173227D01* G37* %LPD*% %LPC*% G36* X-354423Y161793D02* X-354423Y161793D01* X-355944Y162288D01* X-357369Y163014D01* X-358663Y163954D01* X-359794Y165085D01* X-360734Y166379D01* X-361460Y167804D01* X-361955Y169325D01* X-362090Y170181D01* X-353567Y170181D01* X-353567Y161658D01* X-354423Y161793D01* G37* %LPD*% %LPC*% G36* X-151731Y160015D02* X-151731Y160015D01* X-153252Y160510D01* X-154677Y161236D01* X-155971Y162176D01* X-157102Y163307D01* X-158042Y164601D01* X-158768Y166026D01* X-159263Y167547D01* X-159398Y168403D01* X-150875Y168403D01* X-150875Y159880D01* X-151731Y160015D01* G37* %LPD*% %LPC*% G36* X-147829Y168403D02* X-147829Y168403D01* X-139306Y168403D01* X-139441Y167547D01* X-139936Y166026D01* X-140662Y164601D01* X-141602Y163307D01* X-142733Y162176D01* X-144027Y161236D01* X-145452Y160510D01* X-146973Y160015D01* X-147829Y159880D01* X-147829Y168403D01* G37* %LPD*% %LPC*% G36* X-350521Y170181D02* X-350521Y170181D01* X-341998Y170181D01* X-342133Y169325D01* X-342628Y167804D01* X-343354Y166379D01* X-344294Y165085D01* X-345425Y163954D01* X-346719Y163014D01* X-348144Y162288D01* X-349665Y161793D01* X-350521Y161658D01* X-350521Y170181D01* G37* %LPD*% %LPC*% G36* X-352045Y171703D02* X-352045Y171703D01* X-352045Y171705D01* X-352043Y171705D01* X-352043Y171703D01* X-352045Y171703D01* G37* %LPD*% %LPC*% G36* X-149353Y169925D02* X-149353Y169925D01* X-149353Y169927D01* X-149351Y169927D01* X-149351Y169925D01* X-149353Y169925D01* G37* %LPD*% D10* X-116840Y174244D03* X-149352Y169926D03* X-352044Y171704D03* X-315976Y168656D03* D11* X-202946Y101092D03* X-219710Y256540D03* X-219710Y240030D03* X-200660Y256540D03* X-186690Y240030D03* X-186690Y223520D03* X-201930Y223520D03* X-42164Y180594D03* X-56388Y236474D03* X-78740Y280416D03* X-244602Y124968D03* X-294132Y174498D03* X-152146Y274320D03* X-155702Y259080D03* X-291846Y279908D03* X-293624Y256540D03* X-246888Y188468D03* X-114808Y221234D03* X-281178Y256540D03* X-281432Y246634D03* X-293624Y246634D03* X-291846Y270510D03* X-289814Y184150D03* X-243911Y256974D03* X-246380Y217662D03* X-162194Y274010D03* X-238760Y274237D03* X-146050Y231648D03* X-124714Y222250D03* X-64312Y238401D03* X-206610Y136544D03* X-47733Y202438D03* X-212344Y100838D03* X-114180Y197986D03* X-248147Y227009D03* X-106426Y280531D03* X-167640Y207010D03* X-145908Y269860D03* X-238066Y202506D03* X-237998Y188468D03* X-150622Y219456D03* X-223852Y124890D03* X-160422Y250698D03* X-159766Y266700D03* X-231648Y125222D03* X-160620Y242824D03* M02* ================================================ FILE: PCB/GerberFiles/copper_top_l1.gbr ================================================ G04 EAGLE Gerber RS-274X export* G75* %MOMM*% %FSLAX34Y34*% %LPD*% %INTop Copper*% %IPPOS*% %AMOC8* 5,1,8,0,0,1.08239X$1,22.5*% G01* %ADD10R,0.457200X0.609600*% %ADD11R,0.609600X0.457200*% %ADD12R,0.500000X0.610000*% %ADD13R,0.600000X0.500000*% %ADD14R,0.600000X0.250000*% %ADD15R,0.250000X0.600000*% %ADD16R,5.400000X5.400000*% %ADD17C,0.090000*% %ADD18C,0.350000*% %ADD19R,0.240000X0.240000*% %ADD20R,0.520000X0.520000*% %ADD21R,0.400000X1.350000*% %ADD22R,1.600000X1.400000*% %ADD23R,1.450000X1.300000*% %ADD24R,1.900000X1.900000*% %ADD25C,1.879600*% %ADD26R,1.016000X2.540000*% %ADD27C,0.026000*% %ADD28R,2.680000X2.680000*% %ADD29R,0.611800X0.811800*% %ADD30C,0.553200*% %ADD31C,0.152400*% %ADD32C,0.254000*% G36* X-181093Y73469D02* X-181093Y73469D01* X-181074Y73467D01* X-180972Y73489D01* X-180870Y73505D01* X-180853Y73515D01* X-180833Y73519D01* X-180744Y73572D01* X-180653Y73621D01* X-180639Y73635D01* X-180622Y73645D01* X-180554Y73724D01* X-180483Y73799D01* X-180475Y73817D01* X-180462Y73832D01* X-180423Y73928D01* X-180380Y74022D01* X-180377Y74042D01* X-180370Y74060D01* X-180351Y74227D01* X-180349Y78080D01* X-180353Y78099D01* X-180350Y78119D01* X-180372Y78220D01* X-180389Y78322D01* X-180398Y78340D01* X-180403Y78360D01* X-180455Y78448D01* X-180504Y78540D01* X-180518Y78554D01* X-180529Y78571D01* X-180607Y78638D01* X-180682Y78709D01* X-180700Y78718D01* X-180716Y78731D01* X-180812Y78770D01* X-180905Y78813D01* X-180925Y78815D01* X-180944Y78823D01* X-181111Y78841D01* X-196030Y78841D01* X-196775Y79586D01* X-196775Y93638D01* X-196030Y94383D01* X-181101Y94383D01* X-181081Y94386D01* X-181062Y94384D01* X-180960Y94406D01* X-180858Y94422D01* X-180841Y94432D01* X-180821Y94436D01* X-180732Y94489D01* X-180641Y94538D01* X-180627Y94552D01* X-180610Y94562D01* X-180543Y94641D01* X-180471Y94716D01* X-180463Y94734D01* X-180450Y94749D01* X-180411Y94845D01* X-180368Y94939D01* X-180366Y94958D01* X-180358Y94977D01* X-180340Y95144D01* X-180335Y102645D01* X-180347Y102716D01* X-180349Y102788D01* X-180367Y102837D01* X-180375Y102888D01* X-180409Y102952D01* X-180433Y103019D01* X-180466Y103060D01* X-180490Y103106D01* X-180542Y103155D01* X-180587Y103211D01* X-180631Y103239D01* X-180668Y103275D01* X-180733Y103305D01* X-180794Y103344D01* X-180844Y103357D01* X-180891Y103379D01* X-180963Y103387D01* X-181032Y103404D01* X-181084Y103400D01* X-181136Y103406D01* X-181206Y103391D01* X-181278Y103385D01* X-181325Y103365D01* X-181376Y103354D01* X-181438Y103317D01* X-181504Y103289D01* X-181560Y103244D01* X-181587Y103228D01* X-181603Y103210D01* X-181635Y103184D01* X-181978Y102841D01* X-199030Y102841D01* X-199775Y103586D01* X-199775Y118638D01* X-199030Y119383D01* X-185241Y119383D01* X-185236Y119383D01* X-185232Y119383D01* X-185115Y119403D01* X-184998Y119422D01* X-184994Y119425D01* X-184990Y119425D01* X-184885Y119482D01* X-184781Y119538D01* X-184778Y119541D01* X-184774Y119543D01* X-184693Y119630D01* X-184611Y119716D01* X-184610Y119720D01* X-184606Y119723D01* X-184558Y119831D01* X-184508Y119939D01* X-184507Y119943D01* X-184505Y119948D01* X-184494Y120066D01* X-184481Y120183D01* X-184482Y120188D01* X-184481Y120192D01* X-184508Y120309D01* X-184533Y120424D01* X-184535Y120428D01* X-184536Y120432D01* X-184598Y120533D01* X-184659Y120635D01* X-184663Y120638D01* X-184665Y120642D01* X-184788Y120756D01* X-193826Y127448D01* X-201244Y135764D01* X-201316Y135822D01* X-201384Y135887D01* X-201412Y135899D01* X-201435Y135919D01* X-201522Y135951D01* X-201607Y135990D01* X-201637Y135994D01* X-201666Y136004D01* X-201759Y136007D01* X-201851Y136017D01* X-201881Y136011D01* X-201912Y136012D01* X-202001Y135985D01* X-202092Y135965D01* X-202118Y135949D01* X-202147Y135941D01* X-202223Y135887D01* X-202303Y135839D01* X-202323Y135816D01* X-202348Y135798D01* X-202402Y135723D01* X-202463Y135652D01* X-202474Y135624D01* X-202492Y135599D01* X-202520Y135510D01* X-202555Y135424D01* X-202559Y135386D01* X-202566Y135364D01* X-202565Y135332D01* X-202573Y135257D01* X-202573Y134872D01* X-204938Y132507D01* X-207457Y132507D01* X-207547Y132492D01* X-207638Y132485D01* X-207667Y132473D01* X-207699Y132467D01* X-207780Y132425D01* X-207864Y132389D01* X-207896Y132363D01* X-207917Y132352D01* X-207939Y132329D01* X-207995Y132284D01* X-209642Y130637D01* X-210106Y130637D01* X-210126Y130634D01* X-210145Y130636D01* X-210247Y130614D01* X-210349Y130598D01* X-210366Y130588D01* X-210386Y130584D01* X-210475Y130531D01* X-210566Y130482D01* X-210580Y130468D01* X-210597Y130458D01* X-210664Y130379D01* X-210736Y130304D01* X-210744Y130286D01* X-210757Y130271D01* X-210796Y130175D01* X-210839Y130081D01* X-210841Y130061D01* X-210849Y130043D01* X-210867Y129876D01* X-210867Y129644D01* X-211612Y128899D01* X-218664Y128899D01* X-219409Y129644D01* X-219409Y135696D01* X-218664Y136441D01* X-211408Y136441D01* X-211388Y136444D01* X-211369Y136442D01* X-211267Y136464D01* X-211165Y136480D01* X-211148Y136490D01* X-211128Y136494D01* X-211039Y136547D01* X-210948Y136596D01* X-210934Y136610D01* X-210917Y136620D01* X-210850Y136699D01* X-210778Y136774D01* X-210770Y136792D01* X-210757Y136807D01* X-210718Y136903D01* X-210675Y136997D01* X-210673Y137017D01* X-210665Y137035D01* X-210647Y137202D01* X-210647Y138138D01* X-210650Y138158D01* X-210648Y138177D01* X-210670Y138279D01* X-210686Y138381D01* X-210696Y138398D01* X-210700Y138418D01* X-210753Y138507D01* X-210802Y138598D01* X-210816Y138612D01* X-210826Y138629D01* X-210905Y138696D01* X-210980Y138768D01* X-210998Y138776D01* X-211013Y138789D01* X-211109Y138828D01* X-211203Y138871D01* X-211223Y138873D01* X-211241Y138881D01* X-211408Y138899D01* X-218664Y138899D01* X-219409Y139644D01* X-219409Y145812D01* X-219410Y145820D01* X-219410Y145824D01* X-219414Y145843D01* X-219420Y145882D01* X-219422Y145954D01* X-219440Y146003D01* X-219448Y146054D01* X-219482Y146118D01* X-219507Y146185D01* X-219539Y146226D01* X-219564Y146272D01* X-219615Y146321D01* X-219660Y146377D01* X-219704Y146405D01* X-219742Y146441D01* X-219807Y146471D01* X-219867Y146510D01* X-219918Y146523D01* X-219965Y146545D01* X-220036Y146553D01* X-220106Y146570D01* X-220158Y146566D01* X-220209Y146572D01* X-220280Y146556D01* X-220351Y146551D01* X-220399Y146531D01* X-220450Y146519D01* X-220511Y146483D01* X-220577Y146455D01* X-220633Y146410D01* X-220661Y146393D01* X-220676Y146376D01* X-220708Y146350D01* X-221010Y146048D01* X-221063Y145974D01* X-221123Y145904D01* X-221135Y145874D01* X-221154Y145848D01* X-221181Y145761D01* X-221215Y145676D01* X-221219Y145635D01* X-221226Y145613D01* X-221225Y145581D01* X-221233Y145509D01* X-221233Y137080D01* X-224868Y133445D01* X-224921Y133371D01* X-224981Y133302D01* X-224993Y133271D01* X-225012Y133245D01* X-225039Y133158D01* X-225073Y133073D01* X-225077Y133032D01* X-225084Y133010D01* X-225083Y132978D01* X-225091Y132907D01* X-225091Y129688D01* X-225088Y129668D01* X-225090Y129648D01* X-225068Y129547D01* X-225052Y129445D01* X-225042Y129427D01* X-225038Y129408D01* X-224985Y129319D01* X-224936Y129227D01* X-224922Y129214D01* X-224912Y129197D01* X-224833Y129129D01* X-224758Y129058D01* X-224740Y129050D01* X-224725Y129037D01* X-224629Y128998D01* X-224535Y128954D01* X-224515Y128952D01* X-224497Y128945D01* X-224330Y128926D01* X-222180Y128926D01* X-219816Y126562D01* X-219816Y123218D01* X-220248Y122785D01* X-220301Y122711D01* X-220361Y122641D01* X-220373Y122611D01* X-220392Y122585D01* X-220419Y122498D01* X-220453Y122413D01* X-220457Y122372D01* X-220464Y122350D01* X-220463Y122318D01* X-220471Y122247D01* X-220471Y122144D01* X-220468Y122124D01* X-220470Y122105D01* X-220448Y122003D01* X-220432Y121901D01* X-220422Y121884D01* X-220418Y121864D01* X-220365Y121775D01* X-220316Y121684D01* X-220302Y121670D01* X-220292Y121653D01* X-220213Y121586D01* X-220138Y121514D01* X-220120Y121506D01* X-220105Y121493D01* X-220077Y121482D01* X-219792Y121197D01* X-219776Y121186D01* X-219764Y121170D01* X-219676Y121114D01* X-219593Y121054D01* X-219574Y121048D01* X-219557Y121037D01* X-219456Y121012D01* X-219358Y120981D01* X-219338Y120982D01* X-219318Y120977D01* X-219215Y120985D01* X-219112Y120988D01* X-219093Y120995D01* X-219073Y120996D01* X-218978Y121037D01* X-218881Y121072D01* X-218865Y121085D01* X-218847Y121093D01* X-218716Y121197D01* X-218530Y121383D01* X-214142Y121383D01* X-214052Y121397D01* X-213961Y121405D01* X-213931Y121417D01* X-213899Y121422D01* X-213818Y121465D01* X-213734Y121501D01* X-213702Y121527D01* X-213682Y121538D01* X-213659Y121561D01* X-213603Y121606D01* X-213064Y122145D01* X-212485Y122480D01* X-211838Y122653D01* X-210503Y122653D01* X-210503Y113600D01* X-210500Y113581D01* X-210502Y113561D01* X-210480Y113459D01* X-210464Y113357D01* X-210454Y113340D01* X-210450Y113320D01* X-210397Y113231D01* X-210348Y113140D01* X-210334Y113126D01* X-210324Y113109D01* X-210245Y113042D01* X-210170Y112971D01* X-210152Y112962D01* X-210137Y112949D01* X-210041Y112911D01* X-209988Y112886D01* X-209987Y112881D01* X-209978Y112864D01* X-209974Y112844D01* X-209921Y112755D01* X-209872Y112664D01* X-209858Y112650D01* X-209848Y112633D01* X-209769Y112566D01* X-209694Y112494D01* X-209676Y112486D01* X-209661Y112473D01* X-209564Y112434D01* X-209471Y112391D01* X-209451Y112389D01* X-209433Y112381D01* X-209266Y112363D01* X-204963Y112363D01* X-204963Y106278D01* X-205136Y105631D01* X-205471Y105052D01* X-205944Y104579D01* X-206523Y104244D01* X-207170Y104071D01* X-208031Y104071D01* X-208101Y104060D01* X-208173Y104058D01* X-208222Y104040D01* X-208273Y104032D01* X-208337Y103998D01* X-208404Y103973D01* X-208445Y103941D01* X-208491Y103916D01* X-208540Y103865D01* X-208596Y103820D01* X-208624Y103776D01* X-208660Y103738D01* X-208690Y103673D01* X-208729Y103613D01* X-208742Y103562D01* X-208764Y103515D01* X-208772Y103444D01* X-208789Y103374D01* X-208785Y103322D01* X-208791Y103271D01* X-208776Y103200D01* X-208770Y103129D01* X-208750Y103081D01* X-208739Y103030D01* X-208702Y102969D01* X-208674Y102903D01* X-208629Y102847D01* X-208612Y102819D01* X-208595Y102804D01* X-208569Y102772D01* X-208307Y102510D01* X-208307Y99166D01* X-208791Y98682D01* X-208833Y98624D01* X-208882Y98572D01* X-208904Y98525D01* X-208934Y98483D01* X-208956Y98414D01* X-208986Y98349D01* X-208992Y98297D01* X-209007Y98247D01* X-209005Y98176D01* X-209013Y98105D01* X-209002Y98054D01* X-209000Y98002D01* X-208976Y97934D01* X-208961Y97864D01* X-208934Y97819D01* X-208916Y97771D01* X-208871Y97715D01* X-208834Y97653D01* X-208795Y97619D01* X-208762Y97579D01* X-208702Y97540D01* X-208648Y97493D01* X-208599Y97474D01* X-208555Y97446D01* X-208486Y97428D01* X-208419Y97401D01* X-208348Y97393D01* X-208317Y97385D01* X-208294Y97387D01* X-208253Y97383D01* X-200478Y97383D01* X-199733Y96638D01* X-199733Y76586D01* X-200478Y75841D01* X-220530Y75841D01* X-221275Y76586D01* X-221275Y96638D01* X-220530Y97383D01* X-216435Y97383D01* X-216365Y97394D01* X-216293Y97396D01* X-216244Y97414D01* X-216193Y97422D01* X-216129Y97456D01* X-216062Y97481D01* X-216021Y97513D01* X-215975Y97538D01* X-215926Y97590D01* X-215870Y97634D01* X-215842Y97678D01* X-215806Y97716D01* X-215776Y97781D01* X-215737Y97841D01* X-215724Y97892D01* X-215702Y97939D01* X-215694Y98010D01* X-215677Y98080D01* X-215681Y98132D01* X-215675Y98183D01* X-215690Y98254D01* X-215696Y98325D01* X-215716Y98373D01* X-215727Y98424D01* X-215764Y98485D01* X-215792Y98551D01* X-215837Y98607D01* X-215854Y98635D01* X-215871Y98650D01* X-215897Y98682D01* X-216381Y99166D01* X-216381Y99246D01* X-216384Y99266D01* X-216382Y99285D01* X-216404Y99387D01* X-216420Y99489D01* X-216430Y99506D01* X-216434Y99526D01* X-216487Y99615D01* X-216536Y99706D01* X-216550Y99720D01* X-216560Y99737D01* X-216639Y99804D01* X-216714Y99876D01* X-216732Y99884D01* X-216747Y99897D01* X-216843Y99936D01* X-216937Y99979D01* X-216957Y99981D01* X-216975Y99989D01* X-217142Y100007D01* X-233555Y100007D01* X-237101Y103553D01* X-237101Y104580D01* X-237104Y104600D01* X-237102Y104619D01* X-237124Y104721D01* X-237140Y104823D01* X-237150Y104840D01* X-237154Y104860D01* X-237207Y104949D01* X-237256Y105040D01* X-237270Y105054D01* X-237280Y105071D01* X-237359Y105138D01* X-237434Y105210D01* X-237452Y105218D01* X-237467Y105231D01* X-237563Y105270D01* X-237657Y105313D01* X-237677Y105315D01* X-237695Y105323D01* X-237862Y105341D01* X-238030Y105341D01* X-238775Y106086D01* X-238775Y120638D01* X-238030Y121383D01* X-235355Y121383D01* X-235285Y121394D01* X-235213Y121396D01* X-235164Y121414D01* X-235113Y121422D01* X-235049Y121456D01* X-234982Y121481D01* X-234941Y121513D01* X-234895Y121538D01* X-234846Y121590D01* X-234790Y121634D01* X-234762Y121678D01* X-234726Y121716D01* X-234696Y121781D01* X-234657Y121841D01* X-234644Y121892D01* X-234622Y121939D01* X-234614Y122010D01* X-234597Y122080D01* X-234601Y122132D01* X-234595Y122183D01* X-234610Y122254D01* X-234616Y122325D01* X-234636Y122373D01* X-234647Y122424D01* X-234684Y122485D01* X-234712Y122551D01* X-234757Y122607D01* X-234774Y122635D01* X-234791Y122650D01* X-234817Y122682D01* X-235685Y123550D01* X-235685Y126894D01* X-233822Y128757D01* X-233811Y128773D01* X-233795Y128785D01* X-233739Y128873D01* X-233679Y128956D01* X-233673Y128976D01* X-233662Y128992D01* X-233637Y129093D01* X-233606Y129191D01* X-233607Y129212D01* X-233602Y129231D01* X-233610Y129334D01* X-233613Y129437D01* X-233620Y129456D01* X-233621Y129476D01* X-233633Y129503D01* X-233633Y135696D01* X-232888Y136441D01* X-227937Y136441D01* X-227847Y136455D01* X-227756Y136463D01* X-227726Y136475D01* X-227695Y136480D01* X-227614Y136523D01* X-227530Y136559D01* X-227498Y136585D01* X-227477Y136596D01* X-227455Y136619D01* X-227399Y136664D01* X-226463Y137600D01* X-226421Y137658D01* X-226372Y137710D01* X-226350Y137757D01* X-226319Y137799D01* X-226298Y137868D01* X-226268Y137933D01* X-226262Y137985D01* X-226247Y138035D01* X-226249Y138106D01* X-226241Y138177D01* X-226252Y138228D01* X-226253Y138280D01* X-226278Y138348D01* X-226293Y138418D01* X-226320Y138463D01* X-226338Y138511D01* X-226383Y138567D01* X-226419Y138629D01* X-226459Y138663D01* X-226492Y138703D01* X-226552Y138742D01* X-226606Y138789D01* X-226655Y138808D01* X-226699Y138836D01* X-226768Y138854D01* X-226835Y138881D01* X-226906Y138889D01* X-226937Y138897D01* X-226960Y138895D01* X-227001Y138899D01* X-232888Y138899D01* X-233633Y139644D01* X-233633Y145696D01* X-232888Y146441D01* X-230639Y146441D01* X-230520Y146460D01* X-230402Y146478D01* X-230399Y146480D01* X-230396Y146480D01* X-230290Y146536D01* X-230184Y146592D01* X-230181Y146594D01* X-230178Y146596D01* X-230170Y146604D01* X-230061Y146706D01* X-224973Y152630D01* X-224940Y152684D01* X-224899Y152731D01* X-224876Y152788D01* X-224844Y152840D01* X-224831Y152901D01* X-224807Y152960D01* X-224797Y153048D01* X-224790Y153080D01* X-224792Y153098D01* X-224789Y153126D01* X-224789Y174494D01* X-224792Y174514D01* X-224790Y174533D01* X-224812Y174635D01* X-224828Y174737D01* X-224838Y174754D01* X-224842Y174774D01* X-224895Y174863D01* X-224944Y174954D01* X-224958Y174968D01* X-224968Y174985D01* X-225047Y175052D01* X-225122Y175124D01* X-225140Y175132D01* X-225155Y175145D01* X-225251Y175184D01* X-225345Y175227D01* X-225365Y175229D01* X-225383Y175237D01* X-225550Y175255D01* X-227600Y175255D01* X-228345Y176000D01* X-228345Y180844D01* X-228348Y180864D01* X-228346Y180883D01* X-228368Y180985D01* X-228384Y181087D01* X-228394Y181104D01* X-228398Y181124D01* X-228451Y181213D01* X-228500Y181304D01* X-228514Y181318D01* X-228524Y181335D01* X-228603Y181402D01* X-228678Y181474D01* X-228696Y181482D01* X-228711Y181495D01* X-228807Y181534D01* X-228901Y181577D01* X-228921Y181579D01* X-228939Y181587D01* X-229106Y181605D01* X-230200Y181605D01* X-234138Y185543D01* X-234154Y185555D01* X-234166Y185570D01* X-234254Y185626D01* X-234337Y185686D01* X-234356Y185692D01* X-234373Y185703D01* X-234474Y185728D01* X-234573Y185759D01* X-234592Y185758D01* X-234612Y185763D01* X-234715Y185755D01* X-234818Y185752D01* X-234837Y185746D01* X-234857Y185744D01* X-234952Y185704D01* X-235049Y185668D01* X-235065Y185656D01* X-235083Y185648D01* X-235214Y185543D01* X-236326Y184431D01* X-239670Y184431D01* X-242035Y186796D01* X-242035Y190140D01* X-239670Y192505D01* X-236326Y192505D01* X-234545Y190724D01* X-234471Y190671D01* X-234401Y190611D01* X-234371Y190599D01* X-234345Y190580D01* X-234258Y190553D01* X-234173Y190519D01* X-234132Y190515D01* X-234110Y190508D01* X-234078Y190509D01* X-234007Y190501D01* X-233346Y190501D01* X-230390Y187545D01* X-230316Y187492D01* X-230247Y187432D01* X-230216Y187420D01* X-230190Y187401D01* X-230103Y187374D01* X-230018Y187340D01* X-229977Y187336D01* X-229955Y187329D01* X-229923Y187330D01* X-229852Y187322D01* X-224407Y187322D01* X-224388Y187325D01* X-224368Y187323D01* X-224266Y187345D01* X-224164Y187361D01* X-224147Y187371D01* X-224127Y187375D01* X-224038Y187428D01* X-223947Y187477D01* X-223933Y187491D01* X-223916Y187501D01* X-223849Y187580D01* X-223778Y187655D01* X-223769Y187673D01* X-223756Y187688D01* X-223718Y187784D01* X-223674Y187878D01* X-223672Y187898D01* X-223664Y187916D01* X-223646Y188083D01* X-223646Y188084D01* X-223645Y188084D01* X-223625Y188087D01* X-223605Y188085D01* X-223504Y188107D01* X-223402Y188124D01* X-223385Y188133D01* X-223365Y188137D01* X-223276Y188190D01* X-223185Y188239D01* X-223171Y188253D01* X-223154Y188263D01* X-223087Y188342D01* X-223015Y188417D01* X-223007Y188435D01* X-222994Y188450D01* X-222955Y188547D01* X-222912Y188640D01* X-222910Y188660D01* X-222902Y188678D01* X-222884Y188845D01* X-222884Y193291D01* X-220644Y193291D01* X-219997Y193118D01* X-219418Y192783D01* X-218945Y192310D01* X-218608Y191726D01* X-218561Y191638D01* X-218520Y191547D01* X-218504Y191530D01* X-218492Y191508D01* X-218420Y191440D01* X-218353Y191367D01* X-218332Y191356D01* X-218314Y191339D01* X-218224Y191297D01* X-218137Y191250D01* X-218113Y191245D01* X-218091Y191235D01* X-217992Y191224D01* X-217895Y191207D01* X-217871Y191211D01* X-217847Y191208D01* X-217749Y191229D01* X-217651Y191244D01* X-217630Y191255D01* X-217606Y191260D01* X-217521Y191311D01* X-217433Y191357D01* X-217416Y191374D01* X-217395Y191387D01* X-217331Y191462D01* X-217261Y191533D01* X-217251Y191555D01* X-217235Y191573D01* X-217198Y191665D01* X-217155Y191755D01* X-217152Y191779D01* X-217143Y191802D01* X-217125Y191968D01* X-217125Y193449D01* X-217125Y194394D01* X-217128Y194414D01* X-217126Y194433D01* X-217148Y194535D01* X-217164Y194637D01* X-217174Y194654D01* X-217178Y194674D01* X-217231Y194763D01* X-217280Y194854D01* X-217294Y194868D01* X-217304Y194885D01* X-217383Y194952D01* X-217458Y195024D01* X-217476Y195032D01* X-217491Y195045D01* X-217587Y195084D01* X-217681Y195127D01* X-217701Y195129D01* X-217719Y195137D01* X-217886Y195155D01* X-247941Y195155D01* X-248031Y195141D01* X-248122Y195133D01* X-248151Y195121D01* X-248183Y195116D01* X-248264Y195073D01* X-248348Y195037D01* X-248380Y195011D01* X-248401Y195000D01* X-248423Y194977D01* X-248479Y194932D01* X-249636Y193775D01* X-254336Y193775D01* X-254356Y193772D01* X-254375Y193774D01* X-254477Y193752D01* X-254579Y193736D01* X-254596Y193726D01* X-254616Y193722D01* X-254705Y193669D01* X-254796Y193620D01* X-254810Y193606D01* X-254827Y193596D01* X-254894Y193517D01* X-254966Y193442D01* X-254974Y193424D01* X-254987Y193409D01* X-255026Y193313D01* X-255069Y193219D01* X-255071Y193199D01* X-255079Y193181D01* X-255097Y193014D01* X-255097Y192579D01* X-255130Y192534D01* X-255177Y192485D01* X-255201Y192435D01* X-255234Y192389D01* X-255254Y192324D01* X-255283Y192263D01* X-255290Y192208D01* X-255306Y192154D01* X-255304Y192086D01* X-255313Y192019D01* X-255301Y191941D01* X-255300Y191908D01* X-255293Y191889D01* X-255287Y191853D01* X-255150Y191342D01* X-255150Y190674D01* X-255287Y190163D01* X-255294Y190095D01* X-255310Y190030D01* X-255306Y189974D01* X-255312Y189918D01* X-255297Y189852D01* X-255291Y189785D01* X-255269Y189733D01* X-255257Y189678D01* X-255221Y189620D01* X-255195Y189558D01* X-255145Y189496D01* X-255128Y189468D01* X-255112Y189455D01* X-255097Y189436D01* X-255097Y184482D01* X-255842Y183737D01* X-256909Y183737D01* X-256999Y183723D01* X-257090Y183715D01* X-257120Y183703D01* X-257152Y183698D01* X-257232Y183655D01* X-257316Y183619D01* X-257348Y183593D01* X-257369Y183582D01* X-257391Y183559D01* X-257447Y183514D01* X-258711Y182250D01* X-263985Y182250D01* X-265249Y183514D01* X-265323Y183567D01* X-265392Y183627D01* X-265423Y183639D01* X-265449Y183658D01* X-265536Y183685D01* X-265621Y183719D01* X-265662Y183723D01* X-265684Y183730D01* X-265716Y183729D01* X-265787Y183737D01* X-266894Y183737D01* X-267363Y184206D01* X-267437Y184259D01* X-267507Y184319D01* X-267537Y184331D01* X-267563Y184350D01* X-267650Y184377D01* X-267735Y184411D01* X-267776Y184415D01* X-267798Y184422D01* X-267830Y184421D01* X-267902Y184429D01* X-275332Y184429D01* X-275352Y184426D01* X-275371Y184428D01* X-275473Y184406D01* X-275575Y184390D01* X-275592Y184380D01* X-275612Y184376D01* X-275701Y184323D01* X-275792Y184274D01* X-275806Y184260D01* X-275823Y184250D01* X-275890Y184171D01* X-275962Y184096D01* X-275970Y184078D01* X-275983Y184063D01* X-276022Y183967D01* X-276065Y183873D01* X-276067Y183853D01* X-276075Y183835D01* X-276093Y183668D01* X-276093Y183366D01* X-276838Y182621D01* X-283986Y182621D01* X-284478Y183113D01* X-284536Y183155D01* X-284588Y183204D01* X-284635Y183226D01* X-284677Y183256D01* X-284746Y183277D01* X-284811Y183308D01* X-284863Y183313D01* X-284913Y183329D01* X-284984Y183327D01* X-285055Y183335D01* X-285106Y183324D01* X-285158Y183322D01* X-285226Y183298D01* X-285296Y183282D01* X-285341Y183256D01* X-285389Y183238D01* X-285445Y183193D01* X-285507Y183156D01* X-285541Y183117D01* X-285581Y183084D01* X-285620Y183024D01* X-285667Y182969D01* X-285686Y182921D01* X-285714Y182877D01* X-285732Y182808D01* X-285759Y182741D01* X-285767Y182670D01* X-285775Y182639D01* X-285773Y182615D01* X-285777Y182574D01* X-285777Y182478D01* X-288142Y180113D01* X-291486Y180113D01* X-293851Y182478D01* X-293851Y185822D01* X-291486Y188187D01* X-288967Y188187D01* X-288877Y188201D01* X-288786Y188209D01* X-288757Y188221D01* X-288725Y188226D01* X-288644Y188269D01* X-288560Y188305D01* X-288528Y188331D01* X-288507Y188342D01* X-288485Y188365D01* X-288429Y188410D01* X-287612Y189227D01* X-284810Y189227D01* X-284720Y189241D01* X-284629Y189249D01* X-284599Y189261D01* X-284567Y189266D01* X-284486Y189309D01* X-284402Y189345D01* X-284370Y189371D01* X-284350Y189382D01* X-284327Y189405D01* X-284271Y189450D01* X-283878Y189843D01* X-283822Y189921D01* X-283761Y189994D01* X-283751Y190020D01* X-283734Y190043D01* X-283706Y190134D01* X-283671Y190223D01* X-283670Y190251D01* X-283662Y190278D01* X-283664Y190374D01* X-283660Y190469D01* X-283667Y190496D01* X-283668Y190524D01* X-283701Y190614D01* X-283727Y190705D01* X-283743Y190729D01* X-283753Y190755D01* X-283812Y190830D01* X-283866Y190908D01* X-283889Y190925D01* X-283906Y190947D01* X-283987Y190999D01* X-284063Y191056D01* X-284096Y191069D01* X-284113Y191080D01* X-284145Y191088D01* X-284219Y191117D01* X-284441Y191176D01* X-285020Y191511D01* X-285493Y191984D01* X-285828Y192563D01* X-286001Y193210D01* X-286001Y194688D01* X-280793Y194688D01* X-280774Y194691D01* X-280754Y194689D01* X-280652Y194711D01* X-280550Y194727D01* X-280533Y194737D01* X-280513Y194741D01* X-280424Y194794D01* X-280421Y194796D01* X-280329Y194759D01* X-280236Y194716D01* X-280216Y194714D01* X-280198Y194706D01* X-280031Y194688D01* X-274823Y194688D01* X-274823Y193210D01* X-274996Y192563D01* X-275331Y191984D01* X-275804Y191511D01* X-276383Y191176D01* X-276605Y191117D01* X-276692Y191078D01* X-276781Y191045D01* X-276804Y191027D01* X-276829Y191016D01* X-276899Y190951D01* X-276974Y190891D01* X-276989Y190868D01* X-277009Y190848D01* X-277055Y190765D01* X-277107Y190684D01* X-277113Y190657D01* X-277127Y190632D01* X-277143Y190538D01* X-277167Y190446D01* X-277164Y190418D01* X-277169Y190390D01* X-277155Y190295D01* X-277147Y190201D01* X-277136Y190175D01* X-277132Y190147D01* X-277088Y190062D01* X-277051Y189974D01* X-277029Y189947D01* X-277019Y189928D01* X-276996Y189905D01* X-276946Y189843D01* X-275983Y188880D01* X-275938Y188796D01* X-275924Y188782D01* X-275914Y188765D01* X-275835Y188698D01* X-275760Y188626D01* X-275742Y188618D01* X-275727Y188605D01* X-275631Y188566D01* X-275537Y188523D01* X-275517Y188521D01* X-275499Y188513D01* X-275332Y188495D01* X-268400Y188495D01* X-268380Y188498D01* X-268361Y188496D01* X-268259Y188518D01* X-268157Y188534D01* X-268140Y188544D01* X-268120Y188548D01* X-268031Y188601D01* X-267940Y188650D01* X-267926Y188664D01* X-267909Y188674D01* X-267842Y188753D01* X-267770Y188828D01* X-267762Y188846D01* X-267749Y188861D01* X-267710Y188957D01* X-267667Y189051D01* X-267665Y189071D01* X-267657Y189089D01* X-267639Y189256D01* X-267639Y189437D01* X-267606Y189482D01* X-267559Y189531D01* X-267535Y189581D01* X-267502Y189627D01* X-267482Y189692D01* X-267453Y189753D01* X-267446Y189808D01* X-267430Y189862D01* X-267432Y189930D01* X-267423Y189997D01* X-267435Y190075D01* X-267436Y190108D01* X-267443Y190128D01* X-267449Y190163D01* X-267569Y190610D01* X-267606Y190693D01* X-267637Y190779D01* X-267656Y190805D01* X-267670Y190834D01* X-267732Y190901D01* X-267788Y190973D01* X-267821Y190997D01* X-267837Y191014D01* X-267866Y191030D01* X-267923Y191072D01* X-267928Y191075D01* X-268401Y191548D01* X-268736Y192127D01* X-268909Y192773D01* X-268909Y195047D01* X-266373Y195047D01* X-266373Y193108D01* X-266369Y193103D01* X-266368Y193103D01* X-265268Y193103D01* X-265266Y193105D01* X-265264Y193104D01* X-263764Y194604D01* X-263764Y194607D01* X-263763Y194608D01* X-263763Y197008D01* X-263767Y197013D01* X-263768Y197013D01* X-264307Y197013D01* X-264307Y199549D01* X-263433Y199549D01* X-262787Y199376D01* X-262208Y199041D01* X-261735Y198568D01* X-261400Y197989D01* X-261400Y197988D01* X-261361Y197901D01* X-261328Y197811D01* X-261311Y197789D01* X-261299Y197764D01* X-261234Y197694D01* X-261174Y197619D01* X-261151Y197604D01* X-261132Y197583D01* X-261048Y197538D01* X-260968Y197486D01* X-260940Y197479D01* X-260915Y197466D01* X-260821Y197450D01* X-260729Y197426D01* X-260701Y197428D01* X-260673Y197424D01* X-260579Y197438D01* X-260484Y197445D01* X-260458Y197456D01* X-260430Y197461D01* X-260345Y197504D01* X-260258Y197542D01* X-260230Y197564D01* X-260211Y197573D01* X-260188Y197597D01* X-260127Y197647D01* X-259924Y197849D01* X-259871Y197923D01* X-259811Y197993D01* X-259799Y198023D01* X-259780Y198049D01* X-259753Y198136D01* X-259719Y198221D01* X-259715Y198262D01* X-259708Y198284D01* X-259709Y198316D01* X-259701Y198388D01* X-259701Y209804D01* X-259704Y209824D01* X-259702Y209843D01* X-259724Y209945D01* X-259740Y210047D01* X-259750Y210064D01* X-259754Y210084D01* X-259807Y210173D01* X-259856Y210264D01* X-259870Y210278D01* X-259880Y210295D01* X-259959Y210362D01* X-260034Y210434D01* X-260052Y210442D01* X-260067Y210455D01* X-260163Y210494D01* X-260257Y210537D01* X-260277Y210539D01* X-260295Y210547D01* X-260462Y210565D01* X-263416Y210565D01* X-264161Y211310D01* X-264161Y216934D01* X-263416Y217679D01* X-256268Y217679D01* X-255523Y216934D01* X-255523Y216285D01* X-255520Y216265D01* X-255522Y216246D01* X-255500Y216144D01* X-255484Y216042D01* X-255474Y216025D01* X-255470Y216005D01* X-255417Y215916D01* X-255368Y215825D01* X-255354Y215811D01* X-255344Y215794D01* X-255265Y215727D01* X-255190Y215655D01* X-255172Y215647D01* X-255157Y215634D01* X-255061Y215595D01* X-254967Y215552D01* X-254947Y215550D01* X-254929Y215542D01* X-254762Y215524D01* X-251708Y215524D01* X-251618Y215538D01* X-251527Y215546D01* X-251498Y215558D01* X-251466Y215563D01* X-251385Y215606D01* X-251301Y215642D01* X-251269Y215668D01* X-251248Y215679D01* X-251226Y215702D01* X-251170Y215747D01* X-250640Y216277D01* X-250587Y216351D01* X-250527Y216420D01* X-250515Y216451D01* X-250496Y216477D01* X-250469Y216564D01* X-250435Y216649D01* X-250431Y216690D01* X-250424Y216712D01* X-250425Y216744D01* X-250417Y216815D01* X-250417Y219334D01* X-248078Y221673D01* X-248036Y221731D01* X-247987Y221783D01* X-247965Y221830D01* X-247935Y221872D01* X-247913Y221941D01* X-247883Y222006D01* X-247877Y222058D01* X-247862Y222108D01* X-247864Y222179D01* X-247856Y222250D01* X-247867Y222301D01* X-247869Y222353D01* X-247893Y222421D01* X-247908Y222491D01* X-247935Y222536D01* X-247953Y222584D01* X-247998Y222640D01* X-248035Y222702D01* X-248074Y222736D01* X-248107Y222776D01* X-248167Y222815D01* X-248221Y222862D01* X-248270Y222881D01* X-248314Y222909D01* X-248383Y222927D01* X-248450Y222954D01* X-248521Y222962D01* X-248552Y222970D01* X-248575Y222968D01* X-248616Y222972D01* X-248994Y222972D01* X-249084Y222958D01* X-249175Y222950D01* X-249204Y222938D01* X-249236Y222933D01* X-249317Y222890D01* X-249401Y222854D01* X-249433Y222828D01* X-249454Y222817D01* X-249476Y222794D01* X-249532Y222749D01* X-250540Y221741D01* X-254762Y221741D01* X-254782Y221738D01* X-254801Y221740D01* X-254903Y221718D01* X-255005Y221702D01* X-255022Y221692D01* X-255042Y221688D01* X-255131Y221635D01* X-255222Y221586D01* X-255236Y221572D01* X-255253Y221562D01* X-255320Y221483D01* X-255392Y221408D01* X-255400Y221390D01* X-255413Y221375D01* X-255452Y221279D01* X-255495Y221185D01* X-255497Y221165D01* X-255505Y221147D01* X-255523Y220980D01* X-255523Y220962D01* X-256268Y220217D01* X-263416Y220217D01* X-264161Y220962D01* X-264161Y226586D01* X-263416Y227331D01* X-256268Y227331D01* X-255523Y226586D01* X-255523Y226568D01* X-255520Y226548D01* X-255522Y226529D01* X-255500Y226427D01* X-255484Y226325D01* X-255474Y226308D01* X-255470Y226288D01* X-255417Y226199D01* X-255368Y226108D01* X-255354Y226094D01* X-255344Y226077D01* X-255265Y226010D01* X-255190Y225938D01* X-255172Y225930D01* X-255157Y225917D01* X-255061Y225878D01* X-254967Y225835D01* X-254947Y225833D01* X-254929Y225825D01* X-254762Y225807D01* X-252945Y225807D01* X-252925Y225810D01* X-252906Y225808D01* X-252804Y225830D01* X-252702Y225846D01* X-252685Y225856D01* X-252665Y225860D01* X-252576Y225913D01* X-252485Y225962D01* X-252471Y225976D01* X-252454Y225986D01* X-252387Y226065D01* X-252315Y226140D01* X-252307Y226158D01* X-252294Y226173D01* X-252255Y226269D01* X-252212Y226363D01* X-252210Y226383D01* X-252202Y226401D01* X-252184Y226568D01* X-252184Y228681D01* X-251663Y229202D01* X-251621Y229260D01* X-251572Y229312D01* X-251550Y229359D01* X-251520Y229401D01* X-251498Y229470D01* X-251468Y229535D01* X-251462Y229587D01* X-251447Y229637D01* X-251449Y229708D01* X-251441Y229779D01* X-251452Y229830D01* X-251454Y229882D01* X-251478Y229950D01* X-251493Y230020D01* X-251520Y230065D01* X-251538Y230113D01* X-251583Y230169D01* X-251620Y230231D01* X-251659Y230265D01* X-251692Y230305D01* X-251752Y230344D01* X-251806Y230391D01* X-251855Y230410D01* X-251899Y230438D01* X-251968Y230456D01* X-252035Y230483D01* X-252106Y230491D01* X-252137Y230499D01* X-252160Y230497D01* X-252201Y230501D01* X-264238Y230501D01* X-265429Y231692D01* X-265429Y233551D01* X-265432Y233571D01* X-265430Y233590D01* X-265452Y233692D01* X-265468Y233794D01* X-265478Y233811D01* X-265482Y233831D01* X-265535Y233920D01* X-265584Y234011D01* X-265598Y234025D01* X-265608Y234042D01* X-265687Y234109D01* X-265762Y234181D01* X-265780Y234189D01* X-265795Y234202D01* X-265891Y234241D01* X-265985Y234284D01* X-266005Y234286D01* X-266023Y234294D01* X-266190Y234312D01* X-266208Y234312D01* X-266953Y235057D01* X-266953Y242205D01* X-266208Y242950D01* X-266190Y242950D01* X-266170Y242953D01* X-266151Y242951D01* X-266049Y242973D01* X-265947Y242989D01* X-265930Y242999D01* X-265910Y243003D01* X-265821Y243056D01* X-265730Y243105D01* X-265716Y243119D01* X-265699Y243129D01* X-265632Y243208D01* X-265560Y243283D01* X-265552Y243301D01* X-265539Y243316D01* X-265500Y243412D01* X-265457Y243506D01* X-265455Y243526D01* X-265447Y243544D01* X-265429Y243711D01* X-265429Y247019D01* X-265432Y247039D01* X-265430Y247058D01* X-265452Y247160D01* X-265468Y247262D01* X-265478Y247279D01* X-265482Y247299D01* X-265535Y247388D01* X-265584Y247479D01* X-265598Y247493D01* X-265608Y247510D01* X-265687Y247577D01* X-265762Y247649D01* X-265780Y247657D01* X-265795Y247670D01* X-265891Y247709D01* X-265985Y247752D01* X-266005Y247754D01* X-266023Y247762D01* X-266190Y247780D01* X-266208Y247780D01* X-266953Y248525D01* X-266953Y255673D01* X-266208Y256418D01* X-260584Y256418D01* X-259839Y255673D01* X-259839Y248525D01* X-260584Y247780D01* X-260602Y247780D01* X-260622Y247777D01* X-260641Y247779D01* X-260743Y247757D01* X-260845Y247741D01* X-260862Y247731D01* X-260882Y247727D01* X-260971Y247674D01* X-261062Y247625D01* X-261076Y247611D01* X-261093Y247601D01* X-261160Y247522D01* X-261232Y247447D01* X-261240Y247429D01* X-261253Y247414D01* X-261292Y247318D01* X-261335Y247224D01* X-261337Y247204D01* X-261345Y247186D01* X-261363Y247019D01* X-261363Y246765D01* X-261360Y246745D01* X-261362Y246726D01* X-261340Y246624D01* X-261324Y246522D01* X-261314Y246505D01* X-261310Y246485D01* X-261257Y246396D01* X-261208Y246305D01* X-261194Y246291D01* X-261184Y246274D01* X-261105Y246207D01* X-261030Y246135D01* X-261012Y246127D01* X-260997Y246114D01* X-260901Y246075D01* X-260807Y246032D01* X-260787Y246030D01* X-260769Y246022D01* X-260602Y246004D01* X-245157Y246004D01* X-245086Y246015D01* X-245015Y246017D01* X-244966Y246035D01* X-244914Y246043D01* X-244851Y246077D01* X-244784Y246102D01* X-244743Y246134D01* X-244697Y246159D01* X-244648Y246211D01* X-244592Y246255D01* X-244563Y246299D01* X-244528Y246337D01* X-244497Y246402D01* X-244459Y246462D01* X-244446Y246513D01* X-244424Y246560D01* X-244416Y246631D01* X-244399Y246701D01* X-244403Y246753D01* X-244397Y246804D01* X-244412Y246875D01* X-244418Y246946D01* X-244438Y246994D01* X-244449Y247045D01* X-244486Y247106D01* X-244514Y247172D01* X-244559Y247228D01* X-244575Y247256D01* X-244593Y247271D01* X-244619Y247303D01* X-246905Y249589D01* X-246979Y249642D01* X-247048Y249702D01* X-247078Y249714D01* X-247105Y249733D01* X-247192Y249760D01* X-247276Y249794D01* X-247317Y249798D01* X-247340Y249805D01* X-247372Y249804D01* X-247443Y249812D01* X-249426Y249812D01* X-249446Y249809D01* X-249465Y249811D01* X-249567Y249789D01* X-249669Y249773D01* X-249686Y249763D01* X-249706Y249759D01* X-249795Y249706D01* X-249886Y249657D01* X-249900Y249643D01* X-249917Y249633D01* X-249984Y249554D01* X-250056Y249479D01* X-250064Y249461D01* X-250077Y249446D01* X-250116Y249350D01* X-250159Y249256D01* X-250161Y249236D01* X-250169Y249218D01* X-250187Y249051D01* X-250187Y248525D01* X-250932Y247780D01* X-256556Y247780D01* X-257301Y248525D01* X-257301Y255673D01* X-256556Y256418D01* X-250932Y256418D01* X-250187Y255673D01* X-250187Y254639D01* X-250184Y254621D01* X-250186Y254604D01* X-250186Y254602D01* X-250186Y254600D01* X-250164Y254498D01* X-250148Y254396D01* X-250138Y254379D01* X-250134Y254359D01* X-250081Y254270D01* X-250032Y254179D01* X-250018Y254165D01* X-250008Y254148D01* X-249929Y254081D01* X-249854Y254009D01* X-249836Y254001D01* X-249821Y253988D01* X-249725Y253949D01* X-249631Y253906D01* X-249611Y253904D01* X-249593Y253896D01* X-249426Y253878D01* X-248361Y253878D01* X-248291Y253889D01* X-248219Y253891D01* X-248170Y253909D01* X-248119Y253917D01* X-248055Y253951D01* X-247988Y253976D01* X-247947Y254008D01* X-247901Y254033D01* X-247852Y254084D01* X-247796Y254129D01* X-247768Y254173D01* X-247732Y254211D01* X-247702Y254276D01* X-247663Y254336D01* X-247650Y254387D01* X-247628Y254434D01* X-247620Y254505D01* X-247603Y254575D01* X-247607Y254627D01* X-247601Y254678D01* X-247616Y254749D01* X-247622Y254820D01* X-247642Y254868D01* X-247653Y254919D01* X-247690Y254980D01* X-247718Y255046D01* X-247763Y255102D01* X-247780Y255130D01* X-247783Y255133D01* X-247784Y255134D01* X-247799Y255147D01* X-247823Y255177D01* X-247948Y255302D01* X-247948Y258646D01* X-247392Y259202D01* X-247350Y259260D01* X-247301Y259312D01* X-247279Y259359D01* X-247249Y259401D01* X-247227Y259470D01* X-247197Y259535D01* X-247191Y259587D01* X-247176Y259637D01* X-247178Y259708D01* X-247170Y259779D01* X-247181Y259830D01* X-247183Y259882D01* X-247207Y259950D01* X-247222Y260020D01* X-247249Y260065D01* X-247267Y260113D01* X-247312Y260169D01* X-247349Y260231D01* X-247388Y260265D01* X-247421Y260305D01* X-247481Y260344D01* X-247535Y260391D01* X-247584Y260410D01* X-247628Y260438D01* X-247697Y260456D01* X-247764Y260483D01* X-247835Y260491D01* X-247866Y260499D01* X-247889Y260497D01* X-247930Y260501D01* X-303276Y260501D01* X-303296Y260498D01* X-303315Y260500D01* X-303417Y260478D01* X-303519Y260462D01* X-303536Y260452D01* X-303556Y260448D01* X-303645Y260395D01* X-303736Y260346D01* X-303750Y260332D01* X-303767Y260322D01* X-303834Y260243D01* X-303906Y260168D01* X-303914Y260150D01* X-303927Y260135D01* X-303966Y260039D01* X-304009Y259945D01* X-304011Y259925D01* X-304019Y259907D01* X-304037Y259740D01* X-304037Y250426D01* X-304848Y249614D01* X-304915Y249575D01* X-305006Y249526D01* X-305020Y249512D01* X-305037Y249502D01* X-305104Y249423D01* X-305176Y249348D01* X-305184Y249330D01* X-305197Y249315D01* X-305236Y249219D01* X-305279Y249125D01* X-305281Y249105D01* X-305289Y249087D01* X-305307Y248920D01* X-305307Y243965D01* X-305305Y243954D01* X-305306Y243946D01* X-305305Y243939D01* X-305306Y243926D01* X-305284Y243824D01* X-305268Y243722D01* X-305258Y243705D01* X-305254Y243685D01* X-305201Y243596D01* X-305152Y243505D01* X-305138Y243491D01* X-305128Y243474D01* X-305049Y243407D01* X-304974Y243335D01* X-304956Y243327D01* X-304941Y243314D01* X-304845Y243275D01* X-304751Y243232D01* X-304731Y243230D01* X-304713Y243222D01* X-304546Y243204D01* X-273635Y243204D01* X-270659Y240228D01* X-270659Y206516D01* X-273635Y203540D01* X-403098Y203540D01* X-403118Y203537D01* X-403137Y203539D01* X-403239Y203517D01* X-403341Y203501D01* X-403358Y203491D01* X-403378Y203487D01* X-403467Y203434D01* X-403558Y203385D01* X-403572Y203371D01* X-403589Y203361D01* X-403656Y203282D01* X-403728Y203207D01* X-403736Y203189D01* X-403749Y203174D01* X-403788Y203078D01* X-403831Y202984D01* X-403833Y202964D01* X-403841Y202946D01* X-403859Y202779D01* X-403859Y163684D01* X-403842Y163579D01* X-403830Y163474D01* X-403822Y163458D01* X-403820Y163441D01* X-403770Y163347D01* X-403725Y163251D01* X-403713Y163239D01* X-403704Y163224D01* X-403628Y163151D01* X-403554Y163074D01* X-403539Y163066D01* X-403526Y163054D01* X-403430Y163010D01* X-403336Y162961D01* X-403315Y162956D01* X-403303Y162951D01* X-403272Y162947D01* X-403172Y162926D01* X-289656Y151872D01* X-289615Y151874D01* X-289589Y151874D01* X-289543Y151869D01* X-289477Y151884D01* X-289410Y151888D01* X-289358Y151909D01* X-289302Y151922D01* X-289245Y151956D01* X-289183Y151981D01* X-289140Y152019D01* X-289122Y152029D01* X-289091Y152048D01* X-289048Y152099D01* X-288997Y152142D01* X-288968Y152191D01* X-288952Y152208D01* X-288950Y152212D01* X-288931Y152235D01* X-288906Y152297D01* X-288872Y152354D01* X-288862Y152402D01* X-288849Y152431D01* X-288848Y152442D01* X-288839Y152463D01* X-288828Y152565D01* X-288822Y152595D01* X-288823Y152608D01* X-288821Y152630D01* X-288821Y176268D01* X-285845Y179244D01* X-238150Y179244D01* X-238136Y179246D01* X-238113Y179245D01* X-236112Y179340D01* X-236100Y179335D01* X-236057Y179308D01* X-235987Y179290D01* X-235928Y179266D01* X-234516Y177854D01* X-234505Y177846D01* X-234490Y177829D01* X-233007Y176481D01* X-233002Y176470D01* X-232991Y176420D01* X-232954Y176357D01* X-232929Y176299D01* X-232929Y174303D01* X-232927Y174289D01* X-232928Y174266D01* X-232594Y167261D01* X-235247Y153205D01* X-241090Y140149D01* X-249804Y128806D01* X-259752Y120735D01* X-259826Y120652D01* X-259902Y120572D01* X-259907Y120561D01* X-259915Y120551D01* X-259959Y120449D01* X-260005Y120349D01* X-260007Y120337D01* X-260012Y120325D01* X-260020Y120215D01* X-260032Y120105D01* X-260030Y120092D01* X-260031Y120080D01* X-260004Y119973D01* X-259980Y119864D01* X-259974Y119853D01* X-259971Y119841D01* X-259911Y119748D01* X-259854Y119653D01* X-259844Y119645D01* X-259838Y119634D01* X-259751Y119565D01* X-259667Y119493D01* X-259655Y119488D01* X-259646Y119481D01* X-259542Y119443D01* X-259439Y119401D01* X-259424Y119400D01* X-259415Y119396D01* X-259387Y119395D01* X-259272Y119383D01* X-245978Y119383D01* X-245233Y118638D01* X-245233Y103586D01* X-245978Y102841D01* X-263030Y102841D01* X-263172Y102983D01* X-263230Y103024D01* X-263282Y103074D01* X-263329Y103096D01* X-263371Y103126D01* X-263440Y103147D01* X-263505Y103178D01* X-263557Y103183D01* X-263607Y103199D01* X-263678Y103197D01* X-263750Y103205D01* X-263800Y103193D01* X-263852Y103192D01* X-263920Y103167D01* X-263990Y103152D01* X-264035Y103126D01* X-264083Y103108D01* X-264139Y103063D01* X-264201Y103026D01* X-264235Y102986D01* X-264275Y102954D01* X-264314Y102894D01* X-264361Y102839D01* X-264380Y102791D01* X-264408Y102747D01* X-264426Y102677D01* X-264453Y102611D01* X-264461Y102540D01* X-264469Y102509D01* X-264467Y102485D01* X-264471Y102444D01* X-264469Y95144D01* X-264466Y95124D01* X-264468Y95105D01* X-264446Y95003D01* X-264429Y94901D01* X-264420Y94884D01* X-264416Y94864D01* X-264363Y94775D01* X-264314Y94684D01* X-264299Y94670D01* X-264289Y94653D01* X-264211Y94586D01* X-264135Y94514D01* X-264118Y94506D01* X-264102Y94493D01* X-264006Y94454D01* X-263912Y94411D01* X-263893Y94409D01* X-263874Y94401D01* X-263708Y94383D01* X-248978Y94383D01* X-248233Y93638D01* X-248233Y79586D01* X-248978Y78841D01* X-263702Y78841D01* X-263722Y78838D01* X-263742Y78840D01* X-263843Y78818D01* X-263945Y78802D01* X-263963Y78792D01* X-263982Y78788D01* X-264071Y78735D01* X-264162Y78686D01* X-264176Y78672D01* X-264193Y78662D01* X-264260Y78583D01* X-264332Y78508D01* X-264340Y78490D01* X-264353Y78475D01* X-264392Y78379D01* X-264435Y78285D01* X-264437Y78265D01* X-264445Y78246D01* X-264463Y78080D01* X-264462Y74227D01* X-264459Y74207D01* X-264461Y74188D01* X-264439Y74086D01* X-264422Y73984D01* X-264413Y73967D01* X-264409Y73947D01* X-264356Y73858D01* X-264307Y73767D01* X-264293Y73753D01* X-264283Y73736D01* X-264204Y73669D01* X-264129Y73597D01* X-264111Y73589D01* X-264096Y73576D01* X-263999Y73537D01* X-263906Y73494D01* X-263886Y73492D01* X-263868Y73484D01* X-263701Y73466D01* X-181113Y73466D01* X-181093Y73469D01* G37* G36* X-158834Y154523D02* X-158834Y154523D01* X-102511Y162778D01* X-102478Y162788D01* X-102444Y162791D01* X-102361Y162825D01* X-102277Y162852D01* X-102249Y162873D01* X-102217Y162886D01* X-102150Y162945D01* X-102078Y162998D01* X-102058Y163026D01* X-102032Y163049D01* X-101988Y163126D01* X-101937Y163199D01* X-101927Y163232D01* X-101909Y163262D01* X-101892Y163349D01* X-101866Y163434D01* X-101868Y163469D01* X-101861Y163503D01* X-101872Y163591D01* X-101875Y163680D01* X-101887Y163713D01* X-101891Y163747D01* X-101930Y163827D01* X-101962Y163911D01* X-101983Y163937D01* X-101998Y163968D01* X-102061Y164032D01* X-102117Y164101D01* X-102146Y164120D01* X-102170Y164144D01* X-102316Y164228D01* X-108409Y166901D01* X-108411Y166902D01* X-108413Y166903D01* X-108530Y166932D01* X-108648Y166963D01* X-108649Y166962D01* X-108651Y166963D01* X-108768Y166954D01* X-108893Y166944D01* X-108895Y166944D01* X-108896Y166944D01* X-109003Y166898D01* X-109120Y166849D01* X-109121Y166848D01* X-109123Y166847D01* X-109254Y166743D01* X-110797Y165199D01* X-114718Y163575D01* X-118962Y163575D01* X-122883Y165199D01* X-125885Y168201D01* X-127509Y172122D01* X-127509Y176366D01* X-126253Y179399D01* X-126226Y179512D01* X-126197Y179626D01* X-126198Y179632D01* X-126196Y179638D01* X-126207Y179755D01* X-126216Y179871D01* X-126219Y179877D01* X-126219Y179883D01* X-126267Y179991D01* X-126313Y180097D01* X-126317Y180103D01* X-126319Y180108D01* X-126332Y180122D01* X-126418Y180228D01* X-131327Y185138D01* X-133038Y186849D01* X-133038Y199649D01* X-133041Y199669D01* X-133039Y199688D01* X-133061Y199790D01* X-133078Y199892D01* X-133087Y199909D01* X-133091Y199929D01* X-133145Y200018D01* X-133193Y200109D01* X-133207Y200123D01* X-133218Y200140D01* X-133296Y200207D01* X-133371Y200279D01* X-133389Y200287D01* X-133404Y200300D01* X-133501Y200339D01* X-133594Y200382D01* X-133614Y200384D01* X-133633Y200392D01* X-133799Y200410D01* X-137761Y200410D01* X-137892Y200541D01* X-137908Y200552D01* X-137920Y200568D01* X-138008Y200624D01* X-138091Y200684D01* X-138110Y200690D01* X-138127Y200701D01* X-138228Y200726D01* X-138327Y200757D01* X-138347Y200756D01* X-138366Y200761D01* X-138469Y200753D01* X-138572Y200750D01* X-138591Y200743D01* X-138611Y200742D01* X-138706Y200701D01* X-138803Y200666D01* X-138819Y200653D01* X-138837Y200645D01* X-138968Y200541D01* X-139099Y200410D01* X-146269Y200410D01* X-147014Y201155D01* X-147014Y210325D01* X-146422Y210917D01* X-146411Y210933D01* X-146395Y210945D01* X-146339Y211033D01* X-146279Y211116D01* X-146273Y211135D01* X-146262Y211152D01* X-146237Y211253D01* X-146206Y211352D01* X-146207Y211371D01* X-146202Y211391D01* X-146210Y211494D01* X-146213Y211597D01* X-146220Y211616D01* X-146221Y211636D01* X-146262Y211731D01* X-146297Y211828D01* X-146310Y211844D01* X-146318Y211862D01* X-146422Y211993D01* X-147014Y212585D01* X-147014Y214376D01* X-147017Y214396D01* X-147015Y214415D01* X-147037Y214517D01* X-147053Y214619D01* X-147063Y214636D01* X-147067Y214656D01* X-147120Y214745D01* X-147169Y214836D01* X-147183Y214850D01* X-147193Y214867D01* X-147272Y214934D01* X-147347Y215006D01* X-147365Y215014D01* X-147380Y215027D01* X-147476Y215066D01* X-147570Y215109D01* X-147590Y215111D01* X-147608Y215119D01* X-147775Y215137D01* X-149940Y215137D01* X-149999Y215196D01* X-150073Y215249D01* X-150142Y215309D01* X-150173Y215321D01* X-150199Y215340D01* X-150286Y215367D01* X-150371Y215401D01* X-150412Y215405D01* X-150434Y215412D01* X-150466Y215411D01* X-150537Y215419D01* X-152294Y215419D01* X-152624Y215749D01* X-152682Y215791D01* X-152734Y215840D01* X-152781Y215862D01* X-152823Y215892D01* X-152892Y215914D01* X-152957Y215944D01* X-153009Y215950D01* X-153059Y215965D01* X-153130Y215963D01* X-153201Y215971D01* X-153252Y215960D01* X-153304Y215958D01* X-153372Y215934D01* X-153442Y215919D01* X-153487Y215892D01* X-153535Y215874D01* X-153591Y215829D01* X-153653Y215792D01* X-153687Y215753D01* X-153727Y215720D01* X-153766Y215660D01* X-153813Y215606D01* X-153832Y215557D01* X-153860Y215513D01* X-153878Y215444D01* X-153905Y215377D01* X-153913Y215306D01* X-153921Y215275D01* X-153919Y215252D01* X-153923Y215211D01* X-153923Y213342D01* X-154776Y212489D01* X-154832Y212411D01* X-154893Y212338D01* X-154903Y212312D01* X-154920Y212289D01* X-154948Y212197D01* X-154983Y212109D01* X-154984Y212081D01* X-154992Y212054D01* X-154990Y211958D01* X-154994Y211863D01* X-154987Y211836D01* X-154986Y211808D01* X-154953Y211718D01* X-154927Y211627D01* X-154911Y211603D01* X-154901Y211577D01* X-154842Y211502D01* X-154788Y211424D01* X-154765Y211407D01* X-154748Y211385D01* X-154667Y211333D01* X-154591Y211276D01* X-154558Y211263D01* X-154541Y211252D01* X-154509Y211244D01* X-154435Y211215D01* X-154213Y211156D01* X-153634Y210821D01* X-153161Y210348D01* X-152826Y209769D01* X-152653Y209122D01* X-152653Y207644D01* X-157861Y207644D01* X-157880Y207641D01* X-157900Y207643D01* X-158002Y207621D01* X-158104Y207605D01* X-158121Y207595D01* X-158141Y207591D01* X-158230Y207538D01* X-158321Y207489D01* X-158335Y207475D01* X-158352Y207465D01* X-158419Y207386D01* X-158490Y207311D01* X-158499Y207293D01* X-158512Y207278D01* X-158550Y207182D01* X-158594Y207088D01* X-158596Y207068D01* X-158604Y207050D01* X-158622Y206883D01* X-158622Y206882D01* X-158623Y206882D01* X-158643Y206879D01* X-158662Y206881D01* X-158764Y206859D01* X-158866Y206842D01* X-158883Y206833D01* X-158903Y206829D01* X-158992Y206776D01* X-159083Y206727D01* X-159097Y206713D01* X-159114Y206703D01* X-159181Y206624D01* X-159253Y206549D01* X-159261Y206531D01* X-159274Y206516D01* X-159313Y206419D01* X-159356Y206326D01* X-159358Y206306D01* X-159366Y206288D01* X-159384Y206121D01* X-159384Y201675D01* X-161624Y201675D01* X-162271Y201848D01* X-162850Y202183D01* X-163323Y202656D01* X-163658Y203235D01* X-163749Y203577D01* X-163788Y203664D01* X-163821Y203754D01* X-163839Y203776D01* X-163850Y203801D01* X-163915Y203871D01* X-163975Y203946D01* X-163999Y203961D01* X-164018Y203982D01* X-164101Y204027D01* X-164182Y204079D01* X-164209Y204086D01* X-164234Y204099D01* X-164328Y204115D01* X-164420Y204139D01* X-164448Y204136D01* X-164476Y204141D01* X-164571Y204127D01* X-164665Y204120D01* X-164691Y204109D01* X-164719Y204104D01* X-164804Y204060D01* X-164892Y204023D01* X-164919Y204001D01* X-164938Y203992D01* X-164961Y203968D01* X-165023Y203918D01* X-165968Y202973D01* X-166308Y202973D01* X-166398Y202959D01* X-166489Y202951D01* X-166519Y202939D01* X-166551Y202934D01* X-166631Y202891D01* X-166715Y202855D01* X-166747Y202829D01* X-166768Y202818D01* X-166790Y202795D01* X-166846Y202750D01* X-170631Y198965D01* X-174329Y198965D01* X-174400Y198954D01* X-174471Y198952D01* X-174520Y198934D01* X-174572Y198926D01* X-174635Y198892D01* X-174702Y198867D01* X-174743Y198835D01* X-174789Y198810D01* X-174838Y198758D01* X-174894Y198714D01* X-174922Y198670D01* X-174958Y198632D01* X-174988Y198567D01* X-175027Y198507D01* X-175040Y198456D01* X-175062Y198409D01* X-175070Y198338D01* X-175087Y198268D01* X-175083Y198216D01* X-175089Y198165D01* X-175074Y198094D01* X-175068Y198023D01* X-175048Y197975D01* X-175037Y197924D01* X-175000Y197863D01* X-174972Y197797D01* X-174927Y197741D01* X-174911Y197713D01* X-174893Y197698D01* X-174867Y197666D01* X-171593Y194392D01* X-170179Y192978D01* X-170179Y189462D01* X-170174Y189430D01* X-170169Y189336D01* X-165411Y160866D01* X-165401Y160839D01* X-165399Y160810D01* X-165377Y160758D01* X-165371Y160730D01* X-165356Y160705D01* X-165331Y160633D01* X-165314Y160610D01* X-165303Y160584D01* X-165198Y160453D01* X-159483Y154738D01* X-159464Y154724D01* X-159449Y154706D01* X-159364Y154652D01* X-159283Y154594D01* X-159261Y154587D01* X-159241Y154575D01* X-159144Y154551D01* X-159048Y154522D01* X-159025Y154522D01* X-159002Y154517D01* X-158834Y154523D01* G37* G36* X-99857Y167637D02* X-99857Y167637D01* X-99704Y167640D01* X-61281Y172475D01* X-61209Y172496D01* X-61134Y172509D01* X-61091Y172531D01* X-61045Y172544D01* X-60983Y172588D01* X-60916Y172624D01* X-60883Y172658D01* X-60844Y172686D01* X-60799Y172747D01* X-60747Y172802D01* X-60727Y172845D01* X-60698Y172884D01* X-60675Y172956D01* X-60643Y173025D01* X-60638Y173073D01* X-60623Y173118D01* X-60624Y173194D01* X-60616Y173269D01* X-60626Y173316D01* X-60627Y173364D01* X-60652Y173436D01* X-60668Y173510D01* X-60693Y173551D01* X-60709Y173596D01* X-60756Y173656D01* X-60795Y173721D01* X-60831Y173752D01* X-60860Y173790D01* X-60924Y173831D01* X-60981Y173881D01* X-61026Y173899D01* X-61066Y173925D01* X-61139Y173944D01* X-61210Y173973D01* X-61274Y173980D01* X-61304Y173988D01* X-61340Y173987D01* X-61376Y173991D01* X-63907Y173991D01* X-63956Y174026D01* X-64026Y174086D01* X-64056Y174098D01* X-64082Y174117D01* X-64169Y174144D01* X-64254Y174178D01* X-64295Y174182D01* X-64317Y174189D01* X-64349Y174188D01* X-64421Y174196D01* X-94320Y174196D01* X-113850Y193726D01* X-113924Y193779D01* X-113994Y193839D01* X-114024Y193851D01* X-114050Y193870D01* X-114137Y193897D01* X-114222Y193931D01* X-114263Y193935D01* X-114285Y193942D01* X-114317Y193941D01* X-114389Y193949D01* X-115852Y193949D01* X-118217Y196314D01* X-118217Y199136D01* X-118220Y199156D01* X-118218Y199175D01* X-118240Y199277D01* X-118257Y199379D01* X-118266Y199396D01* X-118270Y199416D01* X-118323Y199505D01* X-118372Y199596D01* X-118386Y199610D01* X-118396Y199627D01* X-118475Y199694D01* X-118550Y199766D01* X-118568Y199774D01* X-118583Y199787D01* X-118679Y199826D01* X-118773Y199869D01* X-118793Y199871D01* X-118811Y199879D01* X-118978Y199897D01* X-120778Y199897D01* X-120778Y203582D01* X-116331Y203582D01* X-116331Y202784D01* X-116328Y202764D01* X-116330Y202744D01* X-116308Y202643D01* X-116292Y202541D01* X-116282Y202524D01* X-116278Y202504D01* X-116225Y202415D01* X-116176Y202324D01* X-116162Y202310D01* X-116152Y202293D01* X-116073Y202226D01* X-115998Y202154D01* X-115980Y202146D01* X-115965Y202133D01* X-115869Y202094D01* X-115775Y202051D01* X-115755Y202049D01* X-115737Y202041D01* X-115570Y202023D01* X-113071Y202023D01* X-112954Y202042D01* X-112836Y202060D01* X-112832Y202062D01* X-112828Y202062D01* X-112723Y202118D01* X-112617Y202173D01* X-112614Y202176D01* X-112611Y202177D01* X-112529Y202263D01* X-112446Y202349D01* X-112444Y202353D01* X-112441Y202356D01* X-112391Y202464D01* X-112340Y202571D01* X-112339Y202575D01* X-112338Y202579D01* X-112325Y202697D01* X-112310Y202815D01* X-112311Y202820D01* X-112311Y202823D01* X-112313Y202837D01* X-112335Y202981D01* X-113130Y205945D01* X-113130Y213663D01* X-111132Y221117D01* X-107274Y227801D01* X-101817Y233258D01* X-95133Y237116D01* X-87679Y239114D01* X-79961Y239114D01* X-72507Y237116D01* X-68594Y234857D01* X-68571Y234849D01* X-68552Y234834D01* X-68456Y234805D01* X-68364Y234770D01* X-68339Y234769D01* X-68316Y234762D01* X-68217Y234765D01* X-68118Y234761D01* X-68095Y234768D01* X-68071Y234768D01* X-67977Y234803D01* X-67882Y234831D01* X-67862Y234845D01* X-67840Y234853D01* X-67762Y234915D01* X-67681Y234972D01* X-67666Y234992D01* X-67648Y235007D01* X-67594Y235090D01* X-67535Y235170D01* X-67528Y235193D01* X-67515Y235214D01* X-67490Y235310D01* X-67460Y235405D01* X-67460Y235429D01* X-67454Y235452D01* X-67462Y235551D01* X-67464Y235651D01* X-67472Y235673D01* X-67474Y235697D01* X-67512Y235789D01* X-67546Y235882D01* X-67560Y235901D01* X-67570Y235924D01* X-67675Y236055D01* X-68349Y236729D01* X-68349Y237469D01* X-68363Y237559D01* X-68371Y237650D01* X-68383Y237680D01* X-68388Y237712D01* X-68431Y237793D01* X-68467Y237877D01* X-68493Y237909D01* X-68504Y237929D01* X-68527Y237952D01* X-68572Y238008D01* X-73197Y242633D01* X-73197Y245302D01* X-73200Y245322D01* X-73198Y245341D01* X-73220Y245443D01* X-73236Y245545D01* X-73246Y245562D01* X-73250Y245582D01* X-73303Y245671D01* X-73352Y245762D01* X-73366Y245776D01* X-73376Y245793D01* X-73455Y245860D01* X-73530Y245932D01* X-73548Y245940D01* X-73563Y245953D01* X-73659Y245992D01* X-73753Y246035D01* X-73773Y246037D01* X-73791Y246045D01* X-73923Y246059D01* X-74018Y246154D01* X-74092Y246207D01* X-74161Y246267D01* X-74191Y246279D01* X-74217Y246298D01* X-74305Y246325D01* X-74389Y246359D01* X-74430Y246363D01* X-74453Y246370D01* X-74485Y246369D01* X-74556Y246377D01* X-75942Y246377D01* X-75962Y246374D01* X-75981Y246376D01* X-76083Y246354D01* X-76185Y246338D01* X-76202Y246328D01* X-76222Y246324D01* X-76311Y246271D01* X-76402Y246222D01* X-76416Y246208D01* X-76433Y246198D01* X-76500Y246119D01* X-76572Y246044D01* X-76580Y246026D01* X-76593Y246011D01* X-76632Y245915D01* X-76675Y245821D01* X-76677Y245801D01* X-76685Y245783D01* X-76703Y245616D01* X-76703Y245598D01* X-77448Y244853D01* X-84596Y244853D01* X-85341Y245598D01* X-85341Y245616D01* X-85344Y245636D01* X-85342Y245655D01* X-85364Y245757D01* X-85380Y245859D01* X-85390Y245876D01* X-85394Y245896D01* X-85447Y245985D01* X-85496Y246076D01* X-85510Y246090D01* X-85520Y246107D01* X-85599Y246174D01* X-85674Y246246D01* X-85692Y246254D01* X-85707Y246267D01* X-85803Y246306D01* X-85897Y246349D01* X-85917Y246351D01* X-85935Y246359D01* X-86102Y246377D01* X-88138Y246377D01* X-88158Y246374D01* X-88177Y246376D01* X-88279Y246354D01* X-88381Y246338D01* X-88398Y246328D01* X-88418Y246324D01* X-88507Y246271D01* X-88598Y246222D01* X-88612Y246208D01* X-88629Y246198D01* X-88696Y246119D01* X-88768Y246044D01* X-88776Y246026D01* X-88789Y246011D01* X-88828Y245915D01* X-88871Y245821D01* X-88873Y245801D01* X-88881Y245783D01* X-88899Y245616D01* X-88899Y245600D01* X-89644Y244855D01* X-96792Y244855D01* X-97537Y245600D01* X-97537Y251224D01* X-96684Y252077D01* X-96628Y252155D01* X-96567Y252228D01* X-96557Y252254D01* X-96540Y252277D01* X-96512Y252368D01* X-96477Y252457D01* X-96476Y252485D01* X-96468Y252512D01* X-96470Y252608D01* X-96466Y252703D01* X-96473Y252730D01* X-96474Y252758D01* X-96507Y252848D01* X-96533Y252939D01* X-96549Y252963D01* X-96559Y252989D01* X-96618Y253064D01* X-96672Y253142D01* X-96695Y253159D01* X-96712Y253181D01* X-96792Y253233D01* X-96869Y253290D01* X-96902Y253303D01* X-96919Y253314D01* X-96951Y253322D01* X-97025Y253351D01* X-97247Y253410D01* X-97685Y253664D01* X-97775Y253697D01* X-97861Y253738D01* X-97889Y253741D01* X-97915Y253751D01* X-98011Y253754D01* X-98105Y253765D01* X-98133Y253759D01* X-98161Y253760D01* X-98253Y253733D01* X-98346Y253712D01* X-98370Y253698D01* X-98397Y253690D01* X-98475Y253635D01* X-98557Y253586D01* X-98575Y253565D01* X-98598Y253549D01* X-98655Y253472D01* X-98717Y253399D01* X-98727Y253373D01* X-98744Y253350D01* X-98773Y253260D01* X-98808Y253172D01* X-101433Y250547D01* X-101876Y250547D01* X-101896Y250544D01* X-101915Y250546D01* X-102017Y250524D01* X-102119Y250508D01* X-102136Y250498D01* X-102156Y250494D01* X-102245Y250441D01* X-102336Y250392D01* X-102350Y250378D01* X-102367Y250368D01* X-102434Y250289D01* X-102506Y250214D01* X-102514Y250196D01* X-102527Y250181D01* X-102566Y250085D01* X-102609Y249991D01* X-102611Y249971D01* X-102619Y249953D01* X-102637Y249786D01* X-102637Y246194D01* X-102849Y245982D01* X-102860Y245966D01* X-102876Y245954D01* X-102932Y245866D01* X-102992Y245783D01* X-102998Y245764D01* X-103009Y245747D01* X-103034Y245646D01* X-103065Y245547D01* X-103064Y245527D01* X-103069Y245508D01* X-103061Y245405D01* X-103058Y245302D01* X-103051Y245283D01* X-103050Y245263D01* X-103009Y245168D01* X-102974Y245071D01* X-102961Y245055D01* X-102954Y245037D01* X-102849Y244906D01* X-102637Y244694D01* X-102637Y241194D01* X-102849Y240982D01* X-102860Y240966D01* X-102876Y240954D01* X-102932Y240866D01* X-102992Y240783D01* X-102998Y240764D01* X-103009Y240747D01* X-103034Y240646D01* X-103065Y240547D01* X-103064Y240527D01* X-103069Y240508D01* X-103061Y240405D01* X-103058Y240302D01* X-103051Y240283D01* X-103050Y240263D01* X-103009Y240168D01* X-102974Y240071D01* X-102961Y240055D01* X-102954Y240037D01* X-102849Y239906D01* X-102637Y239694D01* X-102637Y236194D01* X-103458Y235373D01* X-111676Y235373D01* X-111696Y235370D01* X-111715Y235372D01* X-111817Y235350D01* X-111919Y235334D01* X-111936Y235324D01* X-111956Y235320D01* X-112045Y235267D01* X-112136Y235218D01* X-112150Y235204D01* X-112167Y235194D01* X-112234Y235115D01* X-112306Y235040D01* X-112314Y235022D01* X-112327Y235007D01* X-112366Y234911D01* X-112409Y234817D01* X-112411Y234797D01* X-112419Y234779D01* X-112437Y234612D01* X-112437Y226394D01* X-113258Y225573D01* X-116758Y225573D01* X-116970Y225785D01* X-116986Y225796D01* X-116998Y225812D01* X-117086Y225868D01* X-117169Y225928D01* X-117188Y225934D01* X-117205Y225945D01* X-117306Y225970D01* X-117405Y226001D01* X-117425Y226000D01* X-117444Y226005D01* X-117547Y225997D01* X-117650Y225994D01* X-117669Y225987D01* X-117689Y225986D01* X-117784Y225945D01* X-117881Y225910D01* X-117897Y225897D01* X-117915Y225890D01* X-118046Y225785D01* X-118258Y225573D01* X-120491Y225573D01* X-120561Y225562D01* X-120633Y225560D01* X-120682Y225542D01* X-120733Y225534D01* X-120797Y225500D01* X-120864Y225475D01* X-120905Y225443D01* X-120951Y225418D01* X-121000Y225366D01* X-121056Y225322D01* X-121084Y225278D01* X-121120Y225240D01* X-121150Y225175D01* X-121189Y225115D01* X-121202Y225064D01* X-121224Y225017D01* X-121232Y224946D01* X-121249Y224876D01* X-121245Y224824D01* X-121251Y224773D01* X-121236Y224702D01* X-121230Y224631D01* X-121210Y224583D01* X-121199Y224532D01* X-121162Y224471D01* X-121134Y224405D01* X-121089Y224349D01* X-121072Y224321D01* X-121055Y224306D01* X-121029Y224274D01* X-120677Y223922D01* X-120677Y220578D01* X-122023Y219232D01* X-122065Y219174D01* X-122114Y219122D01* X-122136Y219075D01* X-122166Y219033D01* X-122188Y218964D01* X-122218Y218899D01* X-122224Y218847D01* X-122239Y218797D01* X-122237Y218726D01* X-122245Y218655D01* X-122234Y218604D01* X-122232Y218552D01* X-122208Y218484D01* X-122193Y218414D01* X-122166Y218369D01* X-122148Y218321D01* X-122103Y218265D01* X-122066Y218203D01* X-122027Y218169D01* X-121994Y218129D01* X-121934Y218090D01* X-121880Y218043D01* X-121831Y218024D01* X-121787Y217996D01* X-121718Y217978D01* X-121651Y217951D01* X-121580Y217943D01* X-121549Y217935D01* X-121526Y217937D01* X-121485Y217933D01* X-118346Y217933D01* X-117601Y217188D01* X-117601Y211564D01* X-118454Y210711D01* X-118510Y210633D01* X-118571Y210560D01* X-118581Y210534D01* X-118598Y210511D01* X-118626Y210420D01* X-118661Y210331D01* X-118662Y210303D01* X-118670Y210276D01* X-118668Y210180D01* X-118672Y210085D01* X-118665Y210058D01* X-118664Y210030D01* X-118631Y209940D01* X-118605Y209849D01* X-118589Y209825D01* X-118579Y209799D01* X-118520Y209724D01* X-118466Y209646D01* X-118443Y209629D01* X-118426Y209607D01* X-118346Y209555D01* X-118269Y209498D01* X-118236Y209485D01* X-118219Y209474D01* X-118187Y209466D01* X-118113Y209437D01* X-117891Y209378D01* X-117312Y209043D01* X-116839Y208570D01* X-116504Y207991D01* X-116331Y207344D01* X-116331Y205866D01* X-121539Y205866D01* X-121558Y205863D01* X-121578Y205865D01* X-121680Y205843D01* X-121782Y205827D01* X-121799Y205817D01* X-121819Y205813D01* X-121908Y205760D01* X-121911Y205758D01* X-122003Y205795D01* X-122096Y205838D01* X-122116Y205840D01* X-122134Y205848D01* X-122301Y205866D01* X-127509Y205866D01* X-127509Y207344D01* X-127336Y207991D01* X-127001Y208570D01* X-126528Y209043D01* X-125949Y209378D01* X-125727Y209437D01* X-125640Y209476D01* X-125550Y209509D01* X-125528Y209527D01* X-125503Y209538D01* X-125433Y209603D01* X-125358Y209663D01* X-125343Y209686D01* X-125323Y209706D01* X-125277Y209789D01* X-125225Y209870D01* X-125219Y209897D01* X-125205Y209922D01* X-125189Y210016D01* X-125165Y210108D01* X-125168Y210136D01* X-125163Y210164D01* X-125177Y210259D01* X-125185Y210353D01* X-125196Y210379D01* X-125200Y210407D01* X-125244Y210492D01* X-125281Y210580D01* X-125303Y210607D01* X-125312Y210626D01* X-125336Y210649D01* X-125386Y210711D01* X-126239Y211564D01* X-126239Y214757D01* X-126242Y214777D01* X-126240Y214796D01* X-126262Y214898D01* X-126278Y215000D01* X-126288Y215017D01* X-126292Y215037D01* X-126345Y215126D01* X-126394Y215217D01* X-126408Y215231D01* X-126418Y215248D01* X-126497Y215315D01* X-126572Y215387D01* X-126590Y215395D01* X-126605Y215408D01* X-126701Y215447D01* X-126795Y215490D01* X-126815Y215492D01* X-126833Y215500D01* X-127000Y215518D01* X-129018Y215518D01* X-129108Y215504D01* X-129199Y215496D01* X-129229Y215484D01* X-129260Y215479D01* X-129341Y215436D01* X-129425Y215400D01* X-129457Y215374D01* X-129478Y215363D01* X-129500Y215340D01* X-129556Y215295D01* X-129623Y215228D01* X-129677Y215154D01* X-129736Y215085D01* X-129748Y215054D01* X-129767Y215028D01* X-129794Y214941D01* X-129828Y214856D01* X-129832Y214815D01* X-129839Y214793D01* X-129838Y214761D01* X-129846Y214690D01* X-129846Y212585D01* X-130438Y211993D01* X-130449Y211977D01* X-130465Y211965D01* X-130521Y211877D01* X-130581Y211794D01* X-130587Y211775D01* X-130598Y211758D01* X-130623Y211657D01* X-130654Y211558D01* X-130653Y211539D01* X-130658Y211519D01* X-130650Y211416D01* X-130647Y211313D01* X-130640Y211294D01* X-130639Y211274D01* X-130598Y211179D01* X-130563Y211082D01* X-130550Y211066D01* X-130542Y211048D01* X-130438Y210917D01* X-129846Y210325D01* X-129846Y205319D01* X-129832Y205229D01* X-129824Y205138D01* X-129812Y205108D01* X-129807Y205076D01* X-129764Y204995D01* X-129728Y204911D01* X-129702Y204879D01* X-129691Y204859D01* X-129668Y204836D01* X-129623Y204780D01* X-128648Y203805D01* X-128574Y203751D01* X-128504Y203692D01* X-128474Y203680D01* X-128448Y203661D01* X-128361Y203634D01* X-128276Y203600D01* X-128235Y203596D01* X-128213Y203589D01* X-128181Y203590D01* X-128109Y203582D01* X-123062Y203582D01* X-123062Y199897D01* X-125302Y199897D01* X-125949Y200070D01* X-126528Y200405D01* X-126657Y200534D01* X-126715Y200576D01* X-126767Y200625D01* X-126815Y200647D01* X-126857Y200678D01* X-126925Y200699D01* X-126990Y200729D01* X-127042Y200735D01* X-127092Y200750D01* X-127164Y200748D01* X-127235Y200756D01* X-127286Y200745D01* X-127338Y200744D01* X-127405Y200719D01* X-127475Y200704D01* X-127520Y200677D01* X-127569Y200659D01* X-127625Y200614D01* X-127686Y200577D01* X-127720Y200538D01* X-127761Y200505D01* X-127800Y200445D01* X-127846Y200391D01* X-127866Y200342D01* X-127894Y200299D01* X-127911Y200229D01* X-127938Y200162D01* X-127946Y200091D01* X-127954Y200060D01* X-127952Y200037D01* X-127957Y199996D01* X-127957Y189269D01* X-127942Y189179D01* X-127935Y189088D01* X-127922Y189058D01* X-127917Y189026D01* X-127874Y188946D01* X-127838Y188862D01* X-127813Y188830D01* X-127802Y188809D01* X-127778Y188787D01* X-127734Y188731D01* X-122824Y183822D01* X-122730Y183754D01* X-122636Y183684D01* X-122630Y183682D01* X-122625Y183678D01* X-122514Y183644D01* X-122402Y183607D01* X-122396Y183608D01* X-122390Y183606D01* X-122273Y183609D01* X-122156Y183610D01* X-122149Y183612D01* X-122144Y183612D01* X-122126Y183618D01* X-121995Y183657D01* X-118962Y184913D01* X-114718Y184913D01* X-110797Y183289D01* X-107795Y180287D01* X-106171Y176366D01* X-106171Y172122D01* X-106504Y171319D01* X-106507Y171307D01* X-106513Y171297D01* X-106535Y171188D01* X-106560Y171079D01* X-106559Y171068D01* X-106561Y171056D01* X-106547Y170945D01* X-106537Y170835D01* X-106532Y170824D01* X-106531Y170812D01* X-106482Y170711D01* X-106437Y170610D01* X-106429Y170601D01* X-106424Y170590D01* X-106346Y170511D01* X-106271Y170429D01* X-106260Y170423D01* X-106252Y170414D01* X-106106Y170330D01* X-100105Y167698D01* X-99988Y167668D01* X-99872Y167637D01* X-99869Y167637D01* X-99867Y167637D01* X-99857Y167637D01* G37* G36* X-244245Y265594D02* X-244245Y265594D01* X-244173Y265596D01* X-244124Y265614D01* X-244073Y265622D01* X-244009Y265656D01* X-243942Y265681D01* X-243901Y265713D01* X-243855Y265738D01* X-243806Y265789D01* X-243750Y265834D01* X-243722Y265878D01* X-243686Y265916D01* X-243656Y265981D01* X-243617Y266041D01* X-243604Y266092D01* X-243582Y266139D01* X-243574Y266210D01* X-243557Y266280D01* X-243561Y266332D01* X-243555Y266383D01* X-243570Y266454D01* X-243576Y266525D01* X-243596Y266573D01* X-243607Y266624D01* X-243644Y266685D01* X-243672Y266751D01* X-243717Y266807D01* X-243733Y266835D01* X-243751Y266850D01* X-243777Y266882D01* X-244125Y267230D01* X-244199Y267283D01* X-244268Y267343D01* X-244299Y267355D01* X-244325Y267374D01* X-244412Y267401D01* X-244497Y267435D01* X-244538Y267439D01* X-244560Y267446D01* X-244592Y267445D01* X-244663Y267453D01* X-251732Y267453D01* X-252477Y268198D01* X-252477Y268216D01* X-252480Y268236D01* X-252478Y268255D01* X-252500Y268357D01* X-252516Y268459D01* X-252526Y268476D01* X-252530Y268496D01* X-252583Y268585D01* X-252632Y268676D01* X-252646Y268690D01* X-252656Y268707D01* X-252735Y268774D01* X-252810Y268846D01* X-252828Y268854D01* X-252843Y268867D01* X-252939Y268906D01* X-253033Y268949D01* X-253053Y268951D01* X-253071Y268959D01* X-253238Y268977D01* X-256800Y268977D01* X-256820Y268974D01* X-256839Y268976D01* X-256941Y268954D01* X-257043Y268938D01* X-257060Y268928D01* X-257080Y268924D01* X-257169Y268871D01* X-257260Y268822D01* X-257274Y268808D01* X-257291Y268798D01* X-257358Y268719D01* X-257430Y268644D01* X-257438Y268626D01* X-257451Y268611D01* X-257490Y268515D01* X-257533Y268421D01* X-257535Y268401D01* X-257543Y268383D01* X-257561Y268216D01* X-257561Y268204D01* X-258306Y267459D01* X-265454Y267459D01* X-266199Y268204D01* X-266199Y268224D01* X-266202Y268244D01* X-266200Y268263D01* X-266222Y268365D01* X-266238Y268467D01* X-266248Y268484D01* X-266252Y268504D01* X-266305Y268593D01* X-266354Y268684D01* X-266368Y268698D01* X-266378Y268715D01* X-266457Y268782D01* X-266532Y268854D01* X-266550Y268862D01* X-266565Y268875D01* X-266661Y268914D01* X-266755Y268957D01* X-266775Y268959D01* X-266793Y268967D01* X-266960Y268985D01* X-270256Y268985D01* X-270276Y268982D01* X-270295Y268984D01* X-270397Y268962D01* X-270499Y268946D01* X-270516Y268936D01* X-270536Y268932D01* X-270625Y268879D01* X-270716Y268830D01* X-270730Y268816D01* X-270747Y268806D01* X-270814Y268727D01* X-270886Y268652D01* X-270894Y268634D01* X-270907Y268619D01* X-270946Y268523D01* X-270989Y268429D01* X-270991Y268409D01* X-270999Y268391D01* X-271017Y268224D01* X-271017Y268206D01* X-271762Y267461D01* X-278910Y267461D01* X-279655Y268206D01* X-279655Y273830D01* X-278802Y274683D01* X-278756Y274747D01* X-278735Y274769D01* X-278730Y274780D01* X-278685Y274834D01* X-278675Y274860D01* X-278658Y274883D01* X-278630Y274974D01* X-278595Y275063D01* X-278594Y275091D01* X-278586Y275118D01* X-278588Y275214D01* X-278584Y275309D01* X-278591Y275336D01* X-278592Y275364D01* X-278625Y275454D01* X-278651Y275545D01* X-278667Y275569D01* X-278677Y275595D01* X-278736Y275670D01* X-278790Y275748D01* X-278813Y275765D01* X-278830Y275787D01* X-278911Y275839D01* X-278987Y275896D01* X-279020Y275909D01* X-279037Y275920D01* X-279069Y275928D01* X-279143Y275957D01* X-279365Y276016D01* X-279944Y276351D01* X-280417Y276824D01* X-280752Y277403D01* X-280925Y278050D01* X-280925Y279528D01* X-275717Y279528D01* X-275698Y279531D01* X-275678Y279529D01* X-275576Y279551D01* X-275474Y279567D01* X-275457Y279577D01* X-275437Y279581D01* X-275348Y279634D01* X-275345Y279636D01* X-275253Y279599D01* X-275160Y279556D01* X-275140Y279554D01* X-275122Y279546D01* X-274955Y279528D01* X-269747Y279528D01* X-269747Y278050D01* X-269920Y277403D01* X-270255Y276824D01* X-270728Y276351D01* X-271307Y276016D01* X-271529Y275957D01* X-271616Y275918D01* X-271705Y275885D01* X-271728Y275867D01* X-271753Y275856D01* X-271823Y275791D01* X-271898Y275731D01* X-271913Y275708D01* X-271933Y275688D01* X-271979Y275605D01* X-272031Y275524D01* X-272037Y275497D01* X-272051Y275472D01* X-272067Y275378D01* X-272091Y275286D01* X-272088Y275258D01* X-272093Y275230D01* X-272079Y275135D01* X-272071Y275041D01* X-272060Y275015D01* X-272056Y274987D01* X-272012Y274902D01* X-271975Y274814D01* X-271953Y274787D01* X-271943Y274768D01* X-271920Y274745D01* X-271891Y274709D01* X-271889Y274706D01* X-271887Y274704D01* X-271870Y274683D01* X-271017Y273830D01* X-271017Y273812D01* X-271014Y273792D01* X-271016Y273773D01* X-270994Y273671D01* X-270978Y273569D01* X-270968Y273552D01* X-270964Y273532D01* X-270911Y273443D01* X-270862Y273352D01* X-270848Y273338D01* X-270838Y273321D01* X-270759Y273254D01* X-270684Y273182D01* X-270666Y273174D01* X-270651Y273161D01* X-270555Y273122D01* X-270461Y273079D01* X-270441Y273077D01* X-270423Y273069D01* X-270256Y273051D01* X-266960Y273051D01* X-266940Y273054D01* X-266921Y273052D01* X-266819Y273074D01* X-266717Y273090D01* X-266700Y273100D01* X-266680Y273104D01* X-266591Y273157D01* X-266500Y273206D01* X-266486Y273220D01* X-266469Y273230D01* X-266402Y273309D01* X-266330Y273384D01* X-266322Y273402D01* X-266309Y273417D01* X-266270Y273513D01* X-266227Y273607D01* X-266225Y273627D01* X-266217Y273645D01* X-266199Y273812D01* X-266199Y273828D01* X-265346Y274681D01* X-265300Y274745D01* X-265277Y274769D01* X-265272Y274781D01* X-265229Y274832D01* X-265219Y274858D01* X-265202Y274881D01* X-265174Y274972D01* X-265139Y275061D01* X-265138Y275089D01* X-265130Y275116D01* X-265132Y275212D01* X-265128Y275307D01* X-265135Y275334D01* X-265136Y275362D01* X-265169Y275452D01* X-265195Y275543D01* X-265211Y275567D01* X-265221Y275593D01* X-265280Y275668D01* X-265334Y275746D01* X-265357Y275763D01* X-265374Y275785D01* X-265454Y275837D01* X-265531Y275894D01* X-265564Y275907D01* X-265581Y275918D01* X-265613Y275926D01* X-265687Y275955D01* X-265909Y276014D01* X-266488Y276349D01* X-266961Y276822D01* X-267296Y277401D01* X-267469Y278048D01* X-267469Y279526D01* X-262261Y279526D01* X-262242Y279529D01* X-262222Y279527D01* X-262120Y279549D01* X-262018Y279565D01* X-262001Y279575D01* X-261981Y279579D01* X-261892Y279632D01* X-261889Y279634D01* X-261797Y279597D01* X-261704Y279554D01* X-261684Y279552D01* X-261666Y279544D01* X-261499Y279526D01* X-256291Y279526D01* X-256291Y278048D01* X-256464Y277401D01* X-256799Y276822D01* X-257272Y276349D01* X-257851Y276014D01* X-258073Y275955D01* X-258160Y275916D01* X-258250Y275883D01* X-258272Y275865D01* X-258297Y275854D01* X-258367Y275789D01* X-258442Y275729D01* X-258457Y275706D01* X-258477Y275686D01* X-258523Y275603D01* X-258575Y275522D01* X-258581Y275495D01* X-258595Y275470D01* X-258611Y275376D01* X-258635Y275284D01* X-258632Y275256D01* X-258637Y275228D01* X-258623Y275133D01* X-258615Y275039D01* X-258604Y275013D01* X-258600Y274985D01* X-258556Y274900D01* X-258519Y274812D01* X-258497Y274785D01* X-258488Y274766D01* X-258464Y274743D01* X-258438Y274711D01* X-258435Y274706D01* X-258432Y274703D01* X-258414Y274681D01* X-257561Y273828D01* X-257561Y273810D01* X-257558Y273790D01* X-257560Y273771D01* X-257538Y273669D01* X-257522Y273567D01* X-257512Y273550D01* X-257508Y273530D01* X-257455Y273441D01* X-257406Y273350D01* X-257392Y273336D01* X-257382Y273319D01* X-257303Y273252D01* X-257228Y273180D01* X-257210Y273172D01* X-257195Y273159D01* X-257099Y273120D01* X-257005Y273077D01* X-256985Y273075D01* X-256967Y273067D01* X-256800Y273049D01* X-253238Y273049D01* X-253218Y273052D01* X-253199Y273050D01* X-253097Y273072D01* X-252995Y273088D01* X-252978Y273098D01* X-252958Y273102D01* X-252869Y273155D01* X-252778Y273204D01* X-252764Y273218D01* X-252747Y273228D01* X-252680Y273307D01* X-252608Y273382D01* X-252600Y273400D01* X-252587Y273415D01* X-252548Y273511D01* X-252505Y273605D01* X-252503Y273625D01* X-252495Y273643D01* X-252477Y273810D01* X-252477Y273822D01* X-251624Y274675D01* X-251579Y274737D01* X-251549Y274769D01* X-251542Y274783D01* X-251507Y274826D01* X-251497Y274852D01* X-251480Y274875D01* X-251452Y274966D01* X-251417Y275055D01* X-251416Y275083D01* X-251408Y275110D01* X-251410Y275206D01* X-251406Y275301D01* X-251413Y275328D01* X-251414Y275356D01* X-251447Y275446D01* X-251473Y275537D01* X-251489Y275561D01* X-251499Y275587D01* X-251558Y275662D01* X-251612Y275740D01* X-251635Y275757D01* X-251652Y275779D01* X-251732Y275831D01* X-251809Y275888D01* X-251842Y275901D01* X-251859Y275912D01* X-251891Y275920D01* X-251965Y275949D01* X-252187Y276008D01* X-252766Y276343D01* X-253239Y276816D01* X-253574Y277395D01* X-253747Y278042D01* X-253747Y279520D01* X-248539Y279520D01* X-248520Y279523D01* X-248500Y279521D01* X-248398Y279543D01* X-248296Y279559D01* X-248279Y279569D01* X-248259Y279573D01* X-248170Y279626D01* X-248167Y279628D01* X-248075Y279591D01* X-247982Y279548D01* X-247962Y279546D01* X-247944Y279538D01* X-247777Y279520D01* X-242569Y279520D01* X-242569Y277974D01* X-242558Y277904D01* X-242556Y277832D01* X-242538Y277783D01* X-242530Y277732D01* X-242496Y277668D01* X-242471Y277601D01* X-242439Y277560D01* X-242414Y277514D01* X-242362Y277465D01* X-242318Y277409D01* X-242274Y277381D01* X-242236Y277345D01* X-242171Y277315D01* X-242111Y277276D01* X-242060Y277263D01* X-242013Y277241D01* X-241942Y277233D01* X-241872Y277216D01* X-241820Y277220D01* X-241769Y277214D01* X-241698Y277229D01* X-241627Y277235D01* X-241579Y277255D01* X-241528Y277266D01* X-241467Y277303D01* X-241401Y277331D01* X-241345Y277376D01* X-241317Y277393D01* X-241302Y277410D01* X-241270Y277436D01* X-240432Y278274D01* X-237913Y278274D01* X-237823Y278288D01* X-237732Y278296D01* X-237703Y278308D01* X-237671Y278313D01* X-237590Y278356D01* X-237506Y278392D01* X-237474Y278418D01* X-237453Y278429D01* X-237431Y278452D01* X-237375Y278497D01* X-234261Y281611D01* X-203530Y281611D01* X-202339Y280420D01* X-202339Y279270D01* X-202328Y279199D01* X-202326Y279127D01* X-202308Y279078D01* X-202300Y279027D01* X-202266Y278963D01* X-202241Y278896D01* X-202209Y278855D01* X-202184Y278809D01* X-202132Y278760D01* X-202088Y278704D01* X-202044Y278676D01* X-202006Y278640D01* X-201941Y278610D01* X-201881Y278571D01* X-201830Y278558D01* X-201783Y278536D01* X-201712Y278529D01* X-201642Y278511D01* X-201590Y278515D01* X-201539Y278509D01* X-201468Y278525D01* X-201397Y278530D01* X-201349Y278551D01* X-201298Y278562D01* X-201296Y278563D01* X-197547Y278563D01* X-197491Y278536D01* X-197439Y278531D01* X-197390Y278515D01* X-197318Y278517D01* X-197247Y278509D01* X-197196Y278520D01* X-197144Y278522D01* X-197076Y278546D01* X-197006Y278562D01* X-196962Y278588D01* X-196913Y278606D01* X-196857Y278651D01* X-196795Y278688D01* X-196761Y278727D01* X-196721Y278760D01* X-196682Y278820D01* X-196635Y278875D01* X-196616Y278923D01* X-196588Y278967D01* X-196570Y279036D01* X-196543Y279103D01* X-196535Y279174D01* X-196527Y279205D01* X-196529Y279229D01* X-196525Y279270D01* X-196525Y283297D01* X-196528Y283317D01* X-196526Y283336D01* X-196548Y283438D01* X-196564Y283540D01* X-196574Y283557D01* X-196578Y283577D01* X-196631Y283666D01* X-196680Y283757D01* X-196694Y283771D01* X-196704Y283788D01* X-196783Y283855D01* X-196858Y283927D01* X-196876Y283935D01* X-196891Y283948D01* X-196987Y283987D01* X-197081Y284030D01* X-197101Y284032D01* X-197119Y284040D01* X-197286Y284058D01* X-241808Y284058D01* X-241828Y284055D01* X-241847Y284057D01* X-241949Y284035D01* X-242051Y284019D01* X-242068Y284009D01* X-242088Y284005D01* X-242177Y283952D01* X-242268Y283903D01* X-242282Y283889D01* X-242299Y283879D01* X-242366Y283800D01* X-242438Y283725D01* X-242446Y283707D01* X-242459Y283692D01* X-242498Y283596D01* X-242541Y283502D01* X-242543Y283482D01* X-242551Y283464D01* X-242569Y283297D01* X-242569Y281804D01* X-247777Y281804D01* X-247796Y281801D01* X-247816Y281803D01* X-247918Y281781D01* X-248020Y281765D01* X-248037Y281755D01* X-248057Y281751D01* X-248146Y281698D01* X-248149Y281696D01* X-248241Y281733D01* X-248334Y281776D01* X-248354Y281778D01* X-248372Y281786D01* X-248539Y281804D01* X-253747Y281804D01* X-253747Y283297D01* X-253750Y283317D01* X-253748Y283336D01* X-253770Y283438D01* X-253786Y283540D01* X-253796Y283557D01* X-253800Y283577D01* X-253853Y283666D01* X-253902Y283757D01* X-253916Y283771D01* X-253926Y283788D01* X-254005Y283855D01* X-254080Y283927D01* X-254098Y283935D01* X-254113Y283948D01* X-254209Y283987D01* X-254303Y284030D01* X-254323Y284032D01* X-254341Y284040D01* X-254508Y284058D01* X-255530Y284058D01* X-255550Y284055D01* X-255569Y284057D01* X-255671Y284035D01* X-255773Y284019D01* X-255790Y284009D01* X-255810Y284005D01* X-255899Y283952D01* X-255990Y283903D01* X-256004Y283889D01* X-256021Y283879D01* X-256088Y283800D01* X-256160Y283725D01* X-256168Y283707D01* X-256181Y283692D01* X-256220Y283596D01* X-256263Y283502D01* X-256265Y283482D01* X-256273Y283464D01* X-256291Y283297D01* X-256291Y281810D01* X-261499Y281810D01* X-261518Y281807D01* X-261538Y281809D01* X-261640Y281787D01* X-261742Y281771D01* X-261759Y281761D01* X-261779Y281757D01* X-261868Y281704D01* X-261871Y281702D01* X-261963Y281739D01* X-262056Y281782D01* X-262076Y281784D01* X-262094Y281792D01* X-262261Y281810D01* X-267469Y281810D01* X-267469Y283297D01* X-267472Y283317D01* X-267470Y283336D01* X-267492Y283438D01* X-267508Y283540D01* X-267518Y283557D01* X-267522Y283577D01* X-267575Y283666D01* X-267624Y283757D01* X-267638Y283771D01* X-267648Y283788D01* X-267727Y283855D01* X-267802Y283927D01* X-267820Y283935D01* X-267835Y283948D01* X-267931Y283987D01* X-268025Y284030D01* X-268045Y284032D01* X-268063Y284040D01* X-268230Y284058D01* X-268986Y284058D01* X-269006Y284055D01* X-269025Y284057D01* X-269127Y284035D01* X-269229Y284019D01* X-269246Y284009D01* X-269266Y284005D01* X-269355Y283952D01* X-269446Y283903D01* X-269460Y283889D01* X-269477Y283879D01* X-269544Y283800D01* X-269616Y283725D01* X-269624Y283707D01* X-269637Y283692D01* X-269676Y283596D01* X-269719Y283502D01* X-269721Y283482D01* X-269729Y283464D01* X-269747Y283297D01* X-269747Y281812D01* X-274955Y281812D01* X-274974Y281809D01* X-274994Y281811D01* X-275096Y281789D01* X-275198Y281773D01* X-275215Y281763D01* X-275235Y281759D01* X-275324Y281706D01* X-275327Y281704D01* X-275419Y281741D01* X-275512Y281784D01* X-275532Y281786D01* X-275550Y281794D01* X-275717Y281812D01* X-280925Y281812D01* X-280925Y283297D01* X-280928Y283317D01* X-280926Y283336D01* X-280948Y283438D01* X-280964Y283540D01* X-280974Y283557D01* X-280978Y283577D01* X-281031Y283666D01* X-281080Y283757D01* X-281094Y283771D01* X-281104Y283788D01* X-281183Y283855D01* X-281258Y283927D01* X-281276Y283935D01* X-281291Y283948D01* X-281387Y283987D01* X-281481Y284030D01* X-281501Y284032D01* X-281519Y284040D01* X-281686Y284058D01* X-304546Y284058D01* X-304566Y284055D01* X-304585Y284057D01* X-304687Y284035D01* X-304789Y284019D01* X-304806Y284009D01* X-304826Y284005D01* X-304915Y283952D01* X-305006Y283903D01* X-305020Y283889D01* X-305037Y283879D01* X-305104Y283800D01* X-305176Y283725D01* X-305184Y283707D01* X-305197Y283692D01* X-305236Y283596D01* X-305279Y283502D01* X-305281Y283482D01* X-305289Y283464D01* X-305307Y283297D01* X-305307Y278384D01* X-305304Y278364D01* X-305306Y278345D01* X-305284Y278243D01* X-305268Y278141D01* X-305258Y278124D01* X-305254Y278104D01* X-305201Y278015D01* X-305152Y277924D01* X-305138Y277910D01* X-305128Y277893D01* X-305049Y277826D01* X-304974Y277754D01* X-304956Y277746D01* X-304941Y277733D01* X-304859Y277700D01* X-304037Y276878D01* X-304037Y266344D01* X-304034Y266324D01* X-304036Y266305D01* X-304014Y266203D01* X-303998Y266101D01* X-303988Y266084D01* X-303984Y266064D01* X-303931Y265975D01* X-303882Y265884D01* X-303868Y265870D01* X-303858Y265853D01* X-303779Y265786D01* X-303704Y265714D01* X-303686Y265706D01* X-303671Y265693D01* X-303575Y265654D01* X-303481Y265611D01* X-303461Y265609D01* X-303443Y265601D01* X-303276Y265583D01* X-244315Y265583D01* X-244245Y265594D01* G37* G36* X-81384Y256923D02* X-81384Y256923D01* X-81364Y256921D01* X-81262Y256943D01* X-81160Y256959D01* X-81143Y256969D01* X-81123Y256973D01* X-81034Y257026D01* X-80943Y257075D01* X-80929Y257089D01* X-80912Y257099D01* X-80845Y257178D01* X-80774Y257253D01* X-80765Y257271D01* X-80752Y257286D01* X-80714Y257382D01* X-80670Y257476D01* X-80668Y257496D01* X-80660Y257514D01* X-80642Y257681D01* X-80642Y257682D01* X-80641Y257682D01* X-80621Y257685D01* X-80601Y257683D01* X-80500Y257705D01* X-80398Y257722D01* X-80381Y257731D01* X-80361Y257735D01* X-80272Y257788D01* X-80181Y257837D01* X-80167Y257851D01* X-80150Y257861D01* X-80083Y257940D01* X-80011Y258015D01* X-80003Y258033D01* X-79990Y258048D01* X-79951Y258145D01* X-79908Y258238D01* X-79906Y258258D01* X-79898Y258276D01* X-79880Y258443D01* X-79880Y262889D01* X-78744Y262889D01* X-78724Y262892D01* X-78705Y262890D01* X-78603Y262912D01* X-78501Y262928D01* X-78484Y262938D01* X-78464Y262942D01* X-78375Y262995D01* X-78284Y263044D01* X-78270Y263058D01* X-78253Y263068D01* X-78186Y263147D01* X-78114Y263222D01* X-78106Y263240D01* X-78093Y263255D01* X-78054Y263351D01* X-78011Y263445D01* X-78009Y263465D01* X-78001Y263483D01* X-77983Y263650D01* X-77983Y265585D01* X-78002Y265701D01* X-78020Y265820D01* X-78022Y265823D01* X-78022Y265827D01* X-78078Y265932D01* X-78133Y266038D01* X-78136Y266041D01* X-78138Y266045D01* X-78224Y266127D01* X-78309Y266210D01* X-78313Y266211D01* X-78316Y266214D01* X-78424Y266265D01* X-78531Y266316D01* X-78535Y266316D01* X-78539Y266318D01* X-78657Y266331D01* X-78775Y266345D01* X-78780Y266345D01* X-78783Y266345D01* X-78797Y266342D01* X-78941Y266320D01* X-79422Y266191D01* X-80900Y266191D01* X-80900Y271399D01* X-80902Y271415D01* X-80901Y271430D01* X-80901Y271433D01* X-80901Y271438D01* X-80923Y271540D01* X-80939Y271642D01* X-80949Y271659D01* X-80953Y271679D01* X-81006Y271768D01* X-81008Y271771D01* X-80971Y271863D01* X-80928Y271956D01* X-80926Y271976D01* X-80918Y271994D01* X-80900Y272161D01* X-80900Y277369D01* X-79422Y277369D01* X-78775Y277196D01* X-78196Y276861D01* X-77723Y276388D01* X-77388Y275809D01* X-77341Y275632D01* X-77302Y275545D01* X-77269Y275455D01* X-77251Y275433D01* X-77240Y275408D01* X-77175Y275338D01* X-77115Y275263D01* X-77092Y275248D01* X-77072Y275227D01* X-76989Y275182D01* X-76908Y275130D01* X-76881Y275123D01* X-76856Y275110D01* X-76762Y275094D01* X-76670Y275070D01* X-76642Y275073D01* X-76614Y275068D01* X-76520Y275082D01* X-76425Y275089D01* X-76399Y275100D01* X-76371Y275105D01* X-76286Y275149D01* X-76198Y275186D01* X-76171Y275208D01* X-76152Y275217D01* X-76129Y275241D01* X-76067Y275291D01* X-72106Y279252D01* X-72060Y279316D01* X-72041Y279336D01* X-72037Y279345D01* X-71993Y279396D01* X-71981Y279426D01* X-71962Y279452D01* X-71935Y279539D01* X-71901Y279624D01* X-71897Y279665D01* X-71890Y279687D01* X-71891Y279719D01* X-71883Y279791D01* X-71883Y283297D01* X-71886Y283317D01* X-71884Y283336D01* X-71906Y283438D01* X-71922Y283540D01* X-71932Y283557D01* X-71936Y283577D01* X-71989Y283666D01* X-72038Y283757D01* X-72052Y283771D01* X-72062Y283788D01* X-72141Y283855D01* X-72216Y283927D01* X-72234Y283935D01* X-72249Y283948D01* X-72345Y283987D01* X-72439Y284030D01* X-72459Y284032D01* X-72477Y284040D01* X-72644Y284058D01* X-102407Y284058D01* X-102477Y284047D01* X-102549Y284045D01* X-102598Y284027D01* X-102649Y284019D01* X-102713Y283985D01* X-102780Y283960D01* X-102821Y283928D01* X-102867Y283903D01* X-102916Y283851D01* X-102972Y283807D01* X-103000Y283763D01* X-103036Y283725D01* X-103066Y283660D01* X-103105Y283600D01* X-103118Y283549D01* X-103140Y283502D01* X-103148Y283431D01* X-103165Y283361D01* X-103161Y283309D01* X-103167Y283258D01* X-103152Y283187D01* X-103146Y283116D01* X-103126Y283068D01* X-103115Y283017D01* X-103078Y282956D01* X-103050Y282890D01* X-103005Y282834D01* X-102988Y282806D01* X-102971Y282791D01* X-102945Y282759D01* X-102389Y282203D01* X-102389Y278859D01* X-104754Y276494D01* X-108098Y276494D01* X-109845Y278241D01* X-109861Y278253D01* X-109873Y278268D01* X-109961Y278324D01* X-110044Y278384D01* X-110063Y278390D01* X-110080Y278401D01* X-110181Y278426D01* X-110280Y278457D01* X-110299Y278456D01* X-110319Y278461D01* X-110422Y278453D01* X-110525Y278450D01* X-110544Y278444D01* X-110564Y278442D01* X-110659Y278402D01* X-110756Y278366D01* X-110772Y278354D01* X-110790Y278346D01* X-110921Y278241D01* X-112752Y276410D01* X-112805Y276336D01* X-112865Y276267D01* X-112877Y276236D01* X-112896Y276210D01* X-112923Y276123D01* X-112957Y276038D01* X-112961Y275997D01* X-112968Y275975D01* X-112967Y275943D01* X-112975Y275872D01* X-112975Y275348D01* X-112961Y275257D01* X-112953Y275167D01* X-112941Y275137D01* X-112936Y275105D01* X-112893Y275024D01* X-112857Y274940D01* X-112831Y274908D01* X-112820Y274887D01* X-112797Y274865D01* X-112752Y274809D01* X-112437Y274494D01* X-112437Y266276D01* X-112434Y266256D01* X-112436Y266237D01* X-112414Y266135D01* X-112398Y266033D01* X-112388Y266016D01* X-112384Y265996D01* X-112331Y265907D01* X-112282Y265816D01* X-112268Y265802D01* X-112258Y265785D01* X-112179Y265718D01* X-112104Y265646D01* X-112086Y265638D01* X-112071Y265625D01* X-111975Y265586D01* X-111881Y265543D01* X-111861Y265541D01* X-111843Y265533D01* X-111676Y265515D01* X-103654Y265515D01* X-103634Y265518D01* X-103615Y265516D01* X-103513Y265538D01* X-103411Y265554D01* X-103394Y265564D01* X-103374Y265568D01* X-103285Y265621D01* X-103194Y265670D01* X-103180Y265684D01* X-103163Y265694D01* X-103096Y265773D01* X-103024Y265848D01* X-103016Y265866D01* X-103003Y265881D01* X-102964Y265977D01* X-102921Y266071D01* X-102919Y266091D01* X-102911Y266109D01* X-102893Y266276D01* X-102893Y270282D01* X-99362Y273813D01* X-96012Y273813D01* X-95992Y273816D01* X-95973Y273814D01* X-95871Y273836D01* X-95769Y273852D01* X-95752Y273862D01* X-95732Y273866D01* X-95643Y273919D01* X-95552Y273968D01* X-95538Y273982D01* X-95521Y273992D01* X-95454Y274071D01* X-95382Y274146D01* X-95374Y274164D01* X-95361Y274179D01* X-95322Y274275D01* X-95279Y274369D01* X-95277Y274389D01* X-95269Y274407D01* X-95251Y274574D01* X-95251Y275354D01* X-94506Y276099D01* X-88882Y276099D01* X-88029Y275246D01* X-87951Y275190D01* X-87878Y275129D01* X-87852Y275119D01* X-87829Y275102D01* X-87738Y275074D01* X-87649Y275039D01* X-87621Y275038D01* X-87594Y275030D01* X-87498Y275032D01* X-87403Y275028D01* X-87376Y275035D01* X-87348Y275036D01* X-87258Y275069D01* X-87167Y275095D01* X-87143Y275111D01* X-87117Y275121D01* X-87042Y275180D01* X-86964Y275234D01* X-86947Y275257D01* X-86925Y275274D01* X-86873Y275355D01* X-86816Y275431D01* X-86803Y275464D01* X-86792Y275481D01* X-86784Y275513D01* X-86755Y275587D01* X-86696Y275809D01* X-86361Y276388D01* X-85888Y276861D01* X-85309Y277196D01* X-84662Y277369D01* X-83184Y277369D01* X-83184Y272161D01* X-83181Y272142D01* X-83183Y272122D01* X-83161Y272020D01* X-83145Y271918D01* X-83135Y271901D01* X-83131Y271881D01* X-83078Y271792D01* X-83076Y271789D01* X-83113Y271697D01* X-83156Y271604D01* X-83158Y271584D01* X-83166Y271566D01* X-83184Y271399D01* X-83184Y266191D01* X-84662Y266191D01* X-85309Y266364D01* X-85888Y266699D01* X-86361Y267172D01* X-86696Y267751D01* X-86755Y267973D01* X-86794Y268060D01* X-86827Y268149D01* X-86845Y268172D01* X-86856Y268197D01* X-86921Y268267D01* X-86981Y268342D01* X-87004Y268357D01* X-87024Y268377D01* X-87107Y268423D01* X-87188Y268475D01* X-87215Y268481D01* X-87240Y268495D01* X-87334Y268511D01* X-87426Y268535D01* X-87454Y268532D01* X-87482Y268537D01* X-87577Y268523D01* X-87671Y268515D01* X-87697Y268504D01* X-87725Y268500D01* X-87810Y268456D01* X-87898Y268419D01* X-87925Y268397D01* X-87944Y268387D01* X-87967Y268364D01* X-88029Y268314D01* X-88882Y267461D01* X-94506Y267461D01* X-95251Y268206D01* X-95251Y268986D01* X-95254Y269006D01* X-95252Y269025D01* X-95274Y269127D01* X-95290Y269229D01* X-95300Y269246D01* X-95304Y269266D01* X-95357Y269355D01* X-95406Y269446D01* X-95420Y269460D01* X-95430Y269477D01* X-95509Y269544D01* X-95584Y269616D01* X-95602Y269624D01* X-95617Y269637D01* X-95713Y269676D01* X-95807Y269719D01* X-95827Y269721D01* X-95845Y269729D01* X-96012Y269747D01* X-97363Y269747D01* X-97453Y269733D01* X-97544Y269725D01* X-97573Y269713D01* X-97605Y269708D01* X-97686Y269665D01* X-97770Y269629D01* X-97802Y269603D01* X-97823Y269592D01* X-97845Y269569D01* X-97901Y269524D01* X-98604Y268821D01* X-98657Y268747D01* X-98717Y268678D01* X-98729Y268647D01* X-98748Y268621D01* X-98775Y268534D01* X-98809Y268449D01* X-98813Y268408D01* X-98820Y268386D01* X-98819Y268354D01* X-98827Y268283D01* X-98827Y263124D01* X-98812Y263030D01* X-98803Y262935D01* X-98792Y262909D01* X-98788Y262881D01* X-98743Y262797D01* X-98705Y262709D01* X-98686Y262688D01* X-98672Y262663D01* X-98603Y262598D01* X-98539Y262527D01* X-98515Y262514D01* X-98494Y262494D01* X-98408Y262454D01* X-98324Y262407D01* X-98297Y262402D01* X-98271Y262390D01* X-98176Y262380D01* X-98083Y262362D01* X-98055Y262366D01* X-98027Y262363D01* X-97933Y262384D01* X-97839Y262397D01* X-97807Y262411D01* X-97786Y262416D01* X-97758Y262433D01* X-97685Y262464D01* X-97247Y262718D01* X-96600Y262891D01* X-94360Y262891D01* X-94360Y258445D01* X-94357Y258427D01* X-94359Y258410D01* X-94359Y258409D01* X-94359Y258406D01* X-94337Y258304D01* X-94321Y258202D01* X-94311Y258185D01* X-94307Y258165D01* X-94254Y258076D01* X-94205Y257985D01* X-94191Y257971D01* X-94181Y257954D01* X-94102Y257887D01* X-94027Y257816D01* X-94009Y257807D01* X-93994Y257794D01* X-93898Y257756D01* X-93804Y257712D01* X-93784Y257710D01* X-93766Y257702D01* X-93599Y257684D01* X-93598Y257684D01* X-93598Y257683D01* X-93595Y257665D01* X-93597Y257649D01* X-93597Y257647D01* X-93597Y257643D01* X-93575Y257542D01* X-93558Y257440D01* X-93549Y257423D01* X-93545Y257403D01* X-93492Y257314D01* X-93443Y257223D01* X-93429Y257209D01* X-93419Y257192D01* X-93340Y257125D01* X-93265Y257053D01* X-93247Y257045D01* X-93232Y257032D01* X-93135Y256993D01* X-93042Y256950D01* X-93022Y256948D01* X-93004Y256940D01* X-92837Y256922D01* X-86886Y256922D01* X-86868Y256920D01* X-81403Y256920D01* X-81384Y256923D01* G37* %LPC*% G36* X-244530Y75841D02* X-244530Y75841D01* X-245275Y76586D01* X-245275Y96638D01* X-244530Y97383D01* X-224478Y97383D01* X-223733Y96638D01* X-223733Y76586D01* X-224478Y75841D01* X-244530Y75841D01* G37* %LPD*% %LPC*% G36* X-318098Y157987D02* X-318098Y157987D01* X-322019Y159611D01* X-325021Y162613D01* X-326645Y166534D01* X-326645Y170778D01* X-325021Y174699D01* X-322019Y177701D01* X-318098Y179325D01* X-313854Y179325D01* X-309933Y177701D01* X-306931Y174699D01* X-305307Y170778D01* X-305307Y166534D01* X-306931Y162613D01* X-309933Y159611D01* X-313854Y157987D01* X-318098Y157987D01* G37* %LPD*% G36* X-36236Y219537D02* X-36236Y219537D01* X-36184Y219538D01* X-36116Y219563D01* X-36046Y219578D01* X-36001Y219605D01* X-35953Y219623D01* X-35897Y219668D01* X-35835Y219704D01* X-35801Y219744D01* X-35761Y219776D01* X-35722Y219837D01* X-35675Y219891D01* X-35656Y219940D01* X-35628Y219983D01* X-35610Y220053D01* X-35583Y220119D01* X-35575Y220191D01* X-35567Y220222D01* X-35569Y220245D01* X-35565Y220286D01* X-35565Y226062D01* X-35568Y226082D01* X-35566Y226101D01* X-35588Y226203D01* X-35604Y226305D01* X-35614Y226322D01* X-35618Y226342D01* X-35671Y226431D01* X-35720Y226522D01* X-35734Y226536D01* X-35744Y226553D01* X-35823Y226620D01* X-35898Y226692D01* X-35916Y226700D01* X-35931Y226713D01* X-36027Y226752D01* X-36121Y226795D01* X-36141Y226797D01* X-36159Y226805D01* X-36326Y226823D01* X-39896Y226823D01* X-40749Y227676D01* X-40827Y227732D01* X-40900Y227793D01* X-40926Y227803D01* X-40949Y227820D01* X-41040Y227848D01* X-41129Y227883D01* X-41157Y227884D01* X-41184Y227892D01* X-41280Y227890D01* X-41375Y227894D01* X-41402Y227887D01* X-41430Y227886D01* X-41520Y227853D01* X-41611Y227827D01* X-41635Y227811D01* X-41661Y227801D01* X-41736Y227742D01* X-41814Y227688D01* X-41831Y227665D01* X-41853Y227648D01* X-41905Y227567D01* X-41962Y227491D01* X-41975Y227458D01* X-41986Y227441D01* X-41994Y227409D01* X-42023Y227335D01* X-42082Y227113D01* X-42417Y226534D01* X-42890Y226061D01* X-43469Y225726D01* X-44116Y225553D01* X-45594Y225553D01* X-45594Y230761D01* X-45597Y230780D01* X-45595Y230800D01* X-45617Y230902D01* X-45633Y231004D01* X-45643Y231021D01* X-45647Y231041D01* X-45700Y231130D01* X-45702Y231133D01* X-45665Y231225D01* X-45622Y231318D01* X-45620Y231338D01* X-45612Y231356D01* X-45594Y231523D01* X-45594Y236731D01* X-44116Y236731D01* X-43469Y236558D01* X-42890Y236223D01* X-42417Y235750D01* X-42082Y235171D01* X-42023Y234949D01* X-41984Y234862D01* X-41951Y234773D01* X-41933Y234751D01* X-41922Y234725D01* X-41857Y234655D01* X-41797Y234581D01* X-41774Y234565D01* X-41754Y234545D01* X-41671Y234499D01* X-41590Y234448D01* X-41563Y234441D01* X-41538Y234427D01* X-41444Y234411D01* X-41352Y234387D01* X-41324Y234390D01* X-41296Y234385D01* X-41202Y234399D01* X-41107Y234407D01* X-41081Y234418D01* X-41053Y234422D01* X-40968Y234465D01* X-40880Y234503D01* X-40853Y234525D01* X-40834Y234535D01* X-40811Y234558D01* X-40749Y234608D01* X-40275Y235082D01* X-40256Y235109D01* X-40231Y235130D01* X-40210Y235165D01* X-40192Y235184D01* X-40175Y235221D01* X-40131Y235282D01* X-40122Y235313D01* X-40105Y235341D01* X-40092Y235399D01* X-40089Y235407D01* X-40086Y235426D01* X-40085Y235430D01* X-40059Y235517D01* X-40060Y235550D01* X-40053Y235582D01* X-40063Y235672D01* X-40065Y235763D01* X-40076Y235794D01* X-40080Y235826D01* X-40143Y235982D01* X-45360Y245663D01* X-45408Y245725D01* X-45448Y245793D01* X-45483Y245822D01* X-45510Y245858D01* X-45576Y245902D01* X-45635Y245953D01* X-45677Y245970D01* X-45715Y245995D01* X-45790Y246015D01* X-45864Y246045D01* X-45923Y246051D01* X-45952Y246059D01* X-45979Y246058D01* X-46030Y246063D01* X-47081Y246063D01* X-47148Y246052D01* X-47215Y246051D01* X-47268Y246033D01* X-47324Y246024D01* X-47383Y245992D01* X-47447Y245969D01* X-47492Y245935D01* X-47541Y245908D01* X-47588Y245859D01* X-47641Y245818D01* X-47688Y245754D01* X-47710Y245730D01* X-47719Y245711D01* X-47721Y245709D01* X-48529Y244901D01* X-49508Y244336D01* X-50599Y244043D01* X-56641Y244043D01* X-56641Y258322D01* X-56644Y258342D01* X-56642Y258361D01* X-56664Y258463D01* X-56681Y258565D01* X-56690Y258582D01* X-56694Y258602D01* X-56747Y258691D01* X-56796Y258782D01* X-56810Y258796D01* X-56820Y258813D01* X-56899Y258880D01* X-56974Y258951D01* X-56992Y258960D01* X-57007Y258973D01* X-57103Y259012D01* X-57197Y259055D01* X-57217Y259057D01* X-57235Y259065D01* X-57402Y259083D01* X-58926Y259083D01* X-58946Y259080D01* X-58965Y259082D01* X-59067Y259060D01* X-59169Y259043D01* X-59186Y259034D01* X-59206Y259030D01* X-59295Y258977D01* X-59386Y258928D01* X-59400Y258914D01* X-59417Y258904D01* X-59484Y258825D01* X-59555Y258750D01* X-59564Y258732D01* X-59577Y258717D01* X-59616Y258621D01* X-59659Y258527D01* X-59661Y258507D01* X-59669Y258489D01* X-59687Y258322D01* X-59687Y244043D01* X-65729Y244043D01* X-66820Y244336D01* X-67326Y244628D01* X-67348Y244636D01* X-67368Y244650D01* X-67463Y244679D01* X-67556Y244715D01* X-67580Y244715D01* X-67603Y244723D01* X-67702Y244720D01* X-67802Y244724D01* X-67825Y244717D01* X-67849Y244716D01* X-67942Y244682D01* X-68038Y244654D01* X-68057Y244640D01* X-68080Y244632D01* X-68158Y244569D01* X-68239Y244512D01* X-68253Y244493D01* X-68272Y244478D01* X-68326Y244394D01* X-68385Y244314D01* X-68392Y244291D01* X-68405Y244271D01* X-68429Y244175D01* X-68459Y244080D01* X-68459Y244056D01* X-68465Y244033D01* X-68457Y243933D01* X-68456Y243834D01* X-68448Y243811D01* X-68446Y243787D01* X-68407Y243696D01* X-68374Y243602D01* X-68359Y243583D01* X-68350Y243561D01* X-68245Y243430D01* X-67156Y242342D01* X-67140Y242330D01* X-67128Y242314D01* X-67040Y242258D01* X-66957Y242198D01* X-66938Y242192D01* X-66921Y242181D01* X-66820Y242156D01* X-66721Y242126D01* X-66702Y242126D01* X-66682Y242121D01* X-66579Y242129D01* X-66476Y242132D01* X-66457Y242139D01* X-66437Y242141D01* X-66342Y242181D01* X-66245Y242217D01* X-66229Y242229D01* X-66211Y242237D01* X-66080Y242342D01* X-65984Y242437D01* X-62640Y242437D01* X-60275Y240073D01* X-60275Y237554D01* X-60261Y237464D01* X-60253Y237373D01* X-60241Y237343D01* X-60236Y237311D01* X-60193Y237231D01* X-60157Y237147D01* X-60131Y237115D01* X-60120Y237094D01* X-60097Y237072D01* X-60052Y237016D01* X-59661Y236625D01* X-59661Y235433D01* X-59647Y235343D01* X-59639Y235252D01* X-59627Y235223D01* X-59622Y235191D01* X-59579Y235110D01* X-59543Y235026D01* X-59517Y234994D01* X-59506Y234973D01* X-59483Y234951D01* X-59438Y234895D01* X-57967Y233424D01* X-57893Y233371D01* X-57823Y233311D01* X-57793Y233299D01* X-57767Y233280D01* X-57680Y233253D01* X-57595Y233219D01* X-57554Y233215D01* X-57532Y233208D01* X-57500Y233209D01* X-57429Y233201D01* X-56237Y233201D01* X-54824Y231787D01* X-52862Y229826D01* X-52804Y229784D01* X-52752Y229734D01* X-52705Y229712D01* X-52663Y229682D01* X-52594Y229661D01* X-52529Y229631D01* X-52477Y229625D01* X-52427Y229610D01* X-52356Y229612D01* X-52285Y229604D01* X-52234Y229615D01* X-52182Y229616D01* X-52114Y229641D01* X-52044Y229656D01* X-51999Y229683D01* X-51951Y229701D01* X-51895Y229745D01* X-51833Y229782D01* X-51799Y229822D01* X-51759Y229854D01* X-51720Y229915D01* X-51673Y229969D01* X-51661Y230000D01* X-47878Y230000D01* X-47878Y225157D01* X-47864Y225067D01* X-47856Y224976D01* X-47844Y224946D01* X-47839Y224914D01* X-47796Y224834D01* X-47760Y224750D01* X-47734Y224718D01* X-47723Y224697D01* X-47700Y224675D01* X-47655Y224619D01* X-46268Y223232D01* X-46194Y223179D01* X-46125Y223119D01* X-46095Y223107D01* X-46069Y223088D01* X-45982Y223061D01* X-45897Y223027D01* X-45856Y223023D01* X-45834Y223016D01* X-45801Y223017D01* X-45730Y223009D01* X-38848Y223009D01* X-38103Y222264D01* X-38103Y221302D01* X-38089Y221212D01* X-38081Y221121D01* X-38069Y221091D01* X-38064Y221059D01* X-38021Y220979D01* X-37985Y220895D01* X-37959Y220863D01* X-37948Y220842D01* X-37925Y220820D01* X-37880Y220764D01* X-37187Y220071D01* X-36864Y219748D01* X-36806Y219706D01* X-36754Y219657D01* X-36707Y219635D01* X-36665Y219604D01* X-36596Y219583D01* X-36531Y219553D01* X-36479Y219547D01* X-36429Y219532D01* X-36358Y219534D01* X-36287Y219526D01* X-36236Y219537D01* G37* G36* X-201893Y210665D02* X-201893Y210665D01* X-201790Y210668D01* X-201771Y210675D01* X-201751Y210676D01* X-201656Y210717D01* X-201559Y210752D01* X-201543Y210765D01* X-201525Y210773D01* X-201394Y210877D01* X-201208Y211063D01* X-201170Y211063D01* X-201150Y211066D01* X-201131Y211064D01* X-201029Y211086D01* X-200927Y211102D01* X-200910Y211112D01* X-200890Y211116D01* X-200801Y211169D01* X-200710Y211218D01* X-200696Y211232D01* X-200679Y211242D01* X-200612Y211321D01* X-200541Y211396D01* X-200532Y211414D01* X-200519Y211429D01* X-200480Y211525D01* X-200437Y211619D01* X-200435Y211639D01* X-200427Y211657D01* X-200409Y211824D01* X-200409Y239019D01* X-173214Y239019D01* X-173194Y239022D01* X-173175Y239020D01* X-173073Y239042D01* X-172971Y239059D01* X-172954Y239068D01* X-172934Y239072D01* X-172845Y239125D01* X-172754Y239174D01* X-172740Y239188D01* X-172723Y239198D01* X-172656Y239277D01* X-172584Y239352D01* X-172576Y239370D01* X-172563Y239385D01* X-172524Y239481D01* X-172481Y239575D01* X-172479Y239595D01* X-172471Y239613D01* X-172453Y239780D01* X-172453Y239818D01* X-172267Y240004D01* X-172256Y240020D01* X-172240Y240032D01* X-172184Y240120D01* X-172124Y240203D01* X-172118Y240222D01* X-172107Y240239D01* X-172082Y240340D01* X-172051Y240438D01* X-172052Y240458D01* X-172047Y240478D01* X-172055Y240581D01* X-172058Y240684D01* X-172065Y240703D01* X-172066Y240723D01* X-172107Y240818D01* X-172142Y240915D01* X-172155Y240931D01* X-172163Y240949D01* X-172267Y241080D01* X-172453Y241266D01* X-172453Y241304D01* X-172456Y241324D01* X-172454Y241343D01* X-172476Y241445D01* X-172492Y241547D01* X-172502Y241564D01* X-172506Y241584D01* X-172559Y241673D01* X-172608Y241764D01* X-172622Y241778D01* X-172632Y241795D01* X-172711Y241862D01* X-172786Y241933D01* X-172804Y241942D01* X-172819Y241955D01* X-172915Y241994D01* X-173009Y242037D01* X-173029Y242039D01* X-173047Y242047D01* X-173214Y242065D01* X-201170Y242065D01* X-201190Y242062D01* X-201209Y242064D01* X-201311Y242042D01* X-201413Y242025D01* X-201430Y242016D01* X-201450Y242012D01* X-201539Y241959D01* X-201630Y241910D01* X-201644Y241896D01* X-201661Y241886D01* X-201728Y241807D01* X-201799Y241732D01* X-201808Y241714D01* X-201821Y241699D01* X-201860Y241603D01* X-201903Y241509D01* X-201905Y241489D01* X-201913Y241471D01* X-201931Y241304D01* X-201931Y240541D01* X-201933Y240541D01* X-201933Y241304D01* X-201936Y241324D01* X-201934Y241343D01* X-201956Y241445D01* X-201973Y241547D01* X-201982Y241564D01* X-201986Y241584D01* X-202039Y241673D01* X-202088Y241764D01* X-202102Y241778D01* X-202112Y241795D01* X-202191Y241862D01* X-202266Y241933D01* X-202284Y241942D01* X-202299Y241955D01* X-202395Y241994D01* X-202489Y242037D01* X-202509Y242039D01* X-202527Y242047D01* X-202694Y242065D01* X-230650Y242065D01* X-230670Y242062D01* X-230689Y242064D01* X-230791Y242042D01* X-230893Y242025D01* X-230910Y242016D01* X-230930Y242012D01* X-231019Y241959D01* X-231110Y241910D01* X-231124Y241896D01* X-231141Y241886D01* X-231208Y241807D01* X-231280Y241732D01* X-231288Y241714D01* X-231301Y241699D01* X-231340Y241603D01* X-231383Y241509D01* X-231385Y241489D01* X-231393Y241471D01* X-231411Y241304D01* X-231411Y241266D01* X-231597Y241080D01* X-231608Y241064D01* X-231624Y241052D01* X-231680Y240964D01* X-231740Y240881D01* X-231746Y240862D01* X-231757Y240845D01* X-231782Y240744D01* X-231813Y240646D01* X-231812Y240626D01* X-231817Y240606D01* X-231809Y240503D01* X-231806Y240400D01* X-231799Y240381D01* X-231798Y240361D01* X-231757Y240266D01* X-231722Y240169D01* X-231709Y240153D01* X-231701Y240135D01* X-231597Y240004D01* X-231411Y239818D01* X-231411Y239780D01* X-231408Y239760D01* X-231410Y239741D01* X-231388Y239639D01* X-231372Y239537D01* X-231362Y239520D01* X-231358Y239500D01* X-231305Y239411D01* X-231256Y239320D01* X-231242Y239306D01* X-231232Y239289D01* X-231153Y239222D01* X-231078Y239151D01* X-231060Y239142D01* X-231045Y239129D01* X-230949Y239090D01* X-230855Y239047D01* X-230835Y239045D01* X-230817Y239037D01* X-230650Y239019D01* X-203455Y239019D01* X-203455Y211824D01* X-203452Y211804D01* X-203454Y211785D01* X-203432Y211683D01* X-203415Y211581D01* X-203406Y211564D01* X-203402Y211544D01* X-203349Y211455D01* X-203300Y211364D01* X-203286Y211350D01* X-203276Y211333D01* X-203197Y211266D01* X-203122Y211194D01* X-203104Y211186D01* X-203089Y211173D01* X-202993Y211134D01* X-202899Y211091D01* X-202879Y211089D01* X-202861Y211081D01* X-202694Y211063D01* X-202656Y211063D01* X-202470Y210877D01* X-202454Y210866D01* X-202442Y210850D01* X-202354Y210794D01* X-202271Y210734D01* X-202252Y210728D01* X-202235Y210717D01* X-202134Y210692D01* X-202036Y210661D01* X-202016Y210662D01* X-201996Y210657D01* X-201893Y210665D01* G37* G36* X-163040Y254010D02* X-163040Y254010D01* X-162969Y254016D01* X-162921Y254036D01* X-162870Y254047D01* X-162809Y254084D01* X-162743Y254112D01* X-162687Y254157D01* X-162659Y254174D01* X-162644Y254191D01* X-162612Y254217D01* X-162094Y254735D01* X-158559Y254735D01* X-158469Y254749D01* X-158378Y254757D01* X-158349Y254769D01* X-158317Y254774D01* X-158236Y254817D01* X-158152Y254853D01* X-158120Y254879D01* X-158099Y254890D01* X-158077Y254913D01* X-158021Y254958D01* X-157608Y255371D01* X-154359Y255371D01* X-154242Y255390D01* X-154124Y255408D01* X-154120Y255410D01* X-154116Y255410D01* X-154012Y255466D01* X-153905Y255521D01* X-153903Y255524D01* X-153899Y255526D01* X-153818Y255611D01* X-153734Y255697D01* X-153732Y255701D01* X-153730Y255704D01* X-153680Y255811D01* X-153628Y255919D01* X-153628Y255923D01* X-153626Y255927D01* X-153613Y256045D01* X-153598Y256163D01* X-153599Y256168D01* X-153599Y256171D01* X-153602Y256185D01* X-153624Y256329D01* X-153649Y256422D01* X-153649Y257183D01* X-147058Y257183D01* X-147039Y257186D01* X-147019Y257184D01* X-146918Y257206D01* X-146816Y257222D01* X-146798Y257232D01* X-146779Y257236D01* X-146689Y257289D01* X-146598Y257337D01* X-146585Y257352D01* X-146567Y257362D01* X-146500Y257441D01* X-146429Y257516D01* X-146420Y257534D01* X-146407Y257549D01* X-146369Y257645D01* X-146325Y257739D01* X-146323Y257759D01* X-146316Y257777D01* X-146297Y257944D01* X-146300Y257964D01* X-146298Y257983D01* X-146298Y257984D01* X-146320Y258085D01* X-146337Y258187D01* X-146346Y258204D01* X-146350Y258224D01* X-146404Y258313D01* X-146452Y258404D01* X-146466Y258418D01* X-146477Y258435D01* X-146555Y258502D01* X-146630Y258574D01* X-146648Y258582D01* X-146663Y258595D01* X-146760Y258634D01* X-146853Y258677D01* X-146873Y258679D01* X-146892Y258687D01* X-147058Y258705D01* X-153649Y258705D01* X-153649Y259466D01* X-153467Y260145D01* X-153115Y260754D01* X-152602Y261267D01* X-152549Y261341D01* X-152489Y261411D01* X-152477Y261441D01* X-152458Y261467D01* X-152431Y261554D01* X-152397Y261639D01* X-152393Y261680D01* X-152386Y261702D01* X-152387Y261734D01* X-152379Y261806D01* X-152379Y264694D01* X-151558Y265515D01* X-149109Y265515D01* X-149039Y265526D01* X-148967Y265528D01* X-148918Y265546D01* X-148867Y265554D01* X-148803Y265588D01* X-148736Y265613D01* X-148695Y265645D01* X-148649Y265670D01* X-148600Y265722D01* X-148544Y265766D01* X-148516Y265810D01* X-148480Y265848D01* X-148450Y265913D01* X-148411Y265973D01* X-148398Y266024D01* X-148376Y266071D01* X-148368Y266142D01* X-148351Y266212D01* X-148355Y266264D01* X-148349Y266315D01* X-148364Y266386D01* X-148370Y266457D01* X-148390Y266505D01* X-148401Y266556D01* X-148438Y266617D01* X-148466Y266683D01* X-148511Y266739D01* X-148528Y266767D01* X-148545Y266782D01* X-148571Y266814D01* X-149945Y268188D01* X-149945Y271533D01* X-148164Y273314D01* X-148111Y273387D01* X-148052Y273457D01* X-148039Y273487D01* X-148021Y273513D01* X-147994Y273600D01* X-147960Y273685D01* X-147955Y273726D01* X-147948Y273748D01* X-147949Y273781D01* X-147941Y273852D01* X-147941Y275020D01* X-146470Y276492D01* X-146428Y276550D01* X-146379Y276602D01* X-146357Y276649D01* X-146326Y276691D01* X-146305Y276760D01* X-146275Y276825D01* X-146269Y276877D01* X-146254Y276927D01* X-146256Y276998D01* X-146248Y277069D01* X-146259Y277120D01* X-146260Y277172D01* X-146285Y277240D01* X-146300Y277310D01* X-146327Y277355D01* X-146345Y277403D01* X-146390Y277459D01* X-146426Y277521D01* X-146466Y277555D01* X-146498Y277595D01* X-146559Y277634D01* X-146613Y277681D01* X-146662Y277700D01* X-146705Y277728D01* X-146775Y277746D01* X-146841Y277773D01* X-146913Y277781D01* X-146944Y277789D01* X-146967Y277787D01* X-147008Y277791D01* X-158429Y277791D01* X-158499Y277780D01* X-158571Y277778D01* X-158620Y277760D01* X-158671Y277752D01* X-158735Y277718D01* X-158802Y277693D01* X-158843Y277661D01* X-158889Y277636D01* X-158938Y277584D01* X-158994Y277540D01* X-159022Y277496D01* X-159058Y277458D01* X-159088Y277393D01* X-159127Y277333D01* X-159140Y277282D01* X-159162Y277235D01* X-159170Y277164D01* X-159187Y277094D01* X-159183Y277042D01* X-159189Y276991D01* X-159174Y276920D01* X-159168Y276849D01* X-159148Y276801D01* X-159137Y276750D01* X-159100Y276689D01* X-159072Y276623D01* X-159027Y276567D01* X-159010Y276539D01* X-158993Y276524D01* X-158967Y276492D01* X-158157Y275682D01* X-158157Y272338D01* X-158459Y272036D01* X-158501Y271978D01* X-158550Y271926D01* X-158572Y271879D01* X-158602Y271837D01* X-158623Y271768D01* X-158654Y271703D01* X-158659Y271651D01* X-158675Y271601D01* X-158673Y271530D01* X-158681Y271459D01* X-158670Y271408D01* X-158668Y271356D01* X-158644Y271288D01* X-158629Y271218D01* X-158602Y271173D01* X-158584Y271125D01* X-158539Y271069D01* X-158502Y271007D01* X-158463Y270973D01* X-158430Y270933D01* X-158370Y270894D01* X-158315Y270847D01* X-158267Y270828D01* X-158223Y270800D01* X-158154Y270782D01* X-158129Y270772D01* X-155729Y268372D01* X-155729Y265028D01* X-158094Y262663D01* X-161438Y262663D01* X-162612Y263837D01* X-162670Y263879D01* X-162722Y263928D01* X-162769Y263950D01* X-162811Y263980D01* X-162880Y264002D01* X-162945Y264032D01* X-162997Y264038D01* X-163047Y264053D01* X-163118Y264051D01* X-163189Y264059D01* X-163240Y264048D01* X-163292Y264046D01* X-163360Y264022D01* X-163430Y264007D01* X-163475Y263980D01* X-163523Y263962D01* X-163579Y263917D01* X-163641Y263880D01* X-163675Y263841D01* X-163715Y263808D01* X-163754Y263748D01* X-163801Y263694D01* X-163820Y263645D01* X-163848Y263601D01* X-163866Y263532D01* X-163893Y263465D01* X-163901Y263394D01* X-163909Y263363D01* X-163907Y263340D01* X-163911Y263299D01* X-163911Y261266D01* X-164097Y261080D01* X-164108Y261064D01* X-164124Y261052D01* X-164180Y260964D01* X-164240Y260881D01* X-164246Y260862D01* X-164257Y260845D01* X-164282Y260744D01* X-164313Y260645D01* X-164312Y260625D01* X-164317Y260606D01* X-164309Y260503D01* X-164306Y260400D01* X-164299Y260381D01* X-164298Y260361D01* X-164257Y260266D01* X-164222Y260169D01* X-164209Y260153D01* X-164201Y260135D01* X-164097Y260004D01* X-163911Y259818D01* X-163911Y256266D01* X-164097Y256080D01* X-164108Y256064D01* X-164124Y256052D01* X-164180Y255964D01* X-164240Y255881D01* X-164246Y255862D01* X-164257Y255845D01* X-164282Y255744D01* X-164313Y255645D01* X-164312Y255625D01* X-164317Y255606D01* X-164309Y255503D01* X-164306Y255400D01* X-164299Y255381D01* X-164298Y255361D01* X-164257Y255266D01* X-164222Y255169D01* X-164209Y255153D01* X-164201Y255135D01* X-164097Y255004D01* X-163911Y254818D01* X-163911Y254755D01* X-163900Y254685D01* X-163898Y254613D01* X-163880Y254564D01* X-163872Y254513D01* X-163838Y254449D01* X-163813Y254382D01* X-163781Y254341D01* X-163756Y254295D01* X-163704Y254246D01* X-163660Y254190D01* X-163616Y254162D01* X-163578Y254126D01* X-163513Y254096D01* X-163453Y254057D01* X-163402Y254044D01* X-163355Y254022D01* X-163284Y254014D01* X-163214Y253997D01* X-163162Y254001D01* X-163111Y253995D01* X-163040Y254010D01* G37* G36* X-45782Y174429D02* X-45782Y174429D01* X-45747Y174430D01* X-36231Y175627D01* X-36140Y175654D01* X-36046Y175674D01* X-36022Y175689D01* X-35995Y175697D01* X-35917Y175752D01* X-35835Y175801D01* X-35817Y175822D01* X-35794Y175838D01* X-35737Y175915D01* X-35675Y175987D01* X-35665Y176014D01* X-35648Y176036D01* X-35619Y176127D01* X-35583Y176216D01* X-35579Y176251D01* X-35573Y176270D01* X-35573Y176303D01* X-35565Y176382D01* X-35565Y186440D01* X-35568Y186460D01* X-35566Y186479D01* X-35588Y186581D01* X-35604Y186683D01* X-35614Y186700D01* X-35618Y186720D01* X-35671Y186809D01* X-35720Y186900D01* X-35734Y186914D01* X-35744Y186931D01* X-35823Y186998D01* X-35898Y187070D01* X-35916Y187078D01* X-35931Y187091D01* X-36027Y187130D01* X-36121Y187173D01* X-36141Y187175D01* X-36159Y187183D01* X-36326Y187201D01* X-37464Y187201D01* X-37464Y192409D01* X-37467Y192428D01* X-37465Y192448D01* X-37487Y192550D01* X-37503Y192652D01* X-37513Y192669D01* X-37517Y192689D01* X-37570Y192778D01* X-37619Y192869D01* X-37633Y192883D01* X-37643Y192900D01* X-37722Y192967D01* X-37797Y193038D01* X-37815Y193047D01* X-37830Y193060D01* X-37926Y193098D01* X-38020Y193142D01* X-38040Y193144D01* X-38058Y193152D01* X-38225Y193170D01* X-38987Y193170D01* X-39007Y193167D01* X-39026Y193169D01* X-39128Y193147D01* X-39230Y193130D01* X-39247Y193121D01* X-39267Y193117D01* X-39356Y193064D01* X-39447Y193015D01* X-39461Y193001D01* X-39478Y192991D01* X-39545Y192912D01* X-39617Y192837D01* X-39625Y192819D01* X-39638Y192804D01* X-39677Y192707D01* X-39720Y192614D01* X-39722Y192594D01* X-39730Y192576D01* X-39748Y192409D01* X-39748Y187201D01* X-41226Y187201D01* X-41731Y187337D01* X-41799Y187343D01* X-41864Y187360D01* X-41920Y187355D01* X-41976Y187361D01* X-42042Y187346D01* X-42110Y187341D01* X-42161Y187319D01* X-42216Y187306D01* X-42274Y187271D01* X-42336Y187244D01* X-42398Y187195D01* X-42426Y187178D01* X-42439Y187162D01* X-42467Y187139D01* X-42559Y187048D01* X-42559Y187047D01* X-46622Y182984D01* X-46634Y182968D01* X-46650Y182955D01* X-46706Y182868D01* X-46766Y182784D01* X-46772Y182765D01* X-46783Y182748D01* X-46808Y182648D01* X-46838Y182549D01* X-46838Y182529D01* X-46843Y182510D01* X-46835Y182407D01* X-46832Y182303D01* X-46825Y182285D01* X-46824Y182265D01* X-46783Y182170D01* X-46747Y182072D01* X-46735Y182057D01* X-46727Y182038D01* X-46622Y181907D01* X-46603Y181888D01* X-46603Y175185D01* X-46592Y175118D01* X-46591Y175051D01* X-46573Y174998D01* X-46564Y174942D01* X-46532Y174882D01* X-46509Y174819D01* X-46475Y174774D01* X-46448Y174725D01* X-46400Y174678D01* X-46358Y174625D01* X-46311Y174594D01* X-46270Y174555D01* X-46209Y174527D01* X-46153Y174490D01* X-46098Y174475D01* X-46047Y174452D01* X-45980Y174444D01* X-45915Y174427D01* X-45835Y174428D01* X-45803Y174425D01* X-45782Y174429D01* G37* G36* X-57382Y259088D02* X-57382Y259088D01* X-57363Y259086D01* X-57261Y259108D01* X-57159Y259125D01* X-57142Y259134D01* X-57122Y259138D01* X-57033Y259191D01* X-56942Y259240D01* X-56928Y259254D01* X-56911Y259264D01* X-56844Y259343D01* X-56773Y259418D01* X-56764Y259436D01* X-56751Y259451D01* X-56712Y259547D01* X-56669Y259641D01* X-56667Y259661D01* X-56659Y259679D01* X-56641Y259846D01* X-56641Y273810D01* X-56644Y273830D01* X-56642Y273849D01* X-56664Y273951D01* X-56681Y274053D01* X-56690Y274070D01* X-56694Y274090D01* X-56747Y274179D01* X-56796Y274270D01* X-56810Y274284D01* X-56820Y274301D01* X-56899Y274368D01* X-56974Y274440D01* X-56992Y274448D01* X-57007Y274461D01* X-57103Y274500D01* X-57197Y274543D01* X-57217Y274545D01* X-57235Y274553D01* X-57402Y274571D01* X-57532Y274571D01* X-57532Y279018D01* X-53847Y279018D01* X-53847Y276778D01* X-54020Y276131D01* X-54355Y275552D01* X-54483Y275424D01* X-54524Y275366D01* X-54574Y275314D01* X-54596Y275267D01* X-54626Y275225D01* X-54647Y275156D01* X-54677Y275091D01* X-54683Y275039D01* X-54699Y274990D01* X-54697Y274918D01* X-54705Y274847D01* X-54693Y274796D01* X-54692Y274744D01* X-54668Y274676D01* X-54652Y274606D01* X-54626Y274561D01* X-54608Y274513D01* X-54563Y274457D01* X-54526Y274395D01* X-54487Y274361D01* X-54454Y274321D01* X-54394Y274282D01* X-54339Y274235D01* X-54291Y274216D01* X-54247Y274188D01* X-54178Y274170D01* X-54111Y274143D01* X-54040Y274135D01* X-54009Y274127D01* X-53985Y274129D01* X-53944Y274125D01* X-50599Y274125D01* X-49508Y273832D01* X-48529Y273267D01* X-47708Y272446D01* X-47697Y272433D01* X-47663Y272375D01* X-47620Y272339D01* X-47585Y272295D01* X-47527Y272259D01* X-47476Y272215D01* X-47424Y272194D01* X-47376Y272164D01* X-47310Y272149D01* X-47248Y272123D01* X-47169Y272114D01* X-47137Y272107D01* X-47116Y272109D01* X-47081Y272105D01* X-45748Y272105D01* X-45681Y272116D01* X-45614Y272117D01* X-45561Y272135D01* X-45505Y272144D01* X-45446Y272176D01* X-45382Y272198D01* X-45337Y272233D01* X-45288Y272260D01* X-45241Y272308D01* X-45188Y272350D01* X-45157Y272397D01* X-45118Y272438D01* X-45090Y272499D01* X-45053Y272555D01* X-45038Y272610D01* X-45015Y272661D01* X-45007Y272728D01* X-44990Y272793D01* X-44994Y272849D01* X-44988Y272905D01* X-45002Y272971D01* X-45006Y273039D01* X-45028Y273091D01* X-45040Y273146D01* X-45074Y273204D01* X-45100Y273266D01* X-45149Y273329D01* X-45166Y273357D01* X-45182Y273370D01* X-45203Y273398D01* X-52706Y281073D01* X-52783Y281130D01* X-52856Y281192D01* X-52882Y281202D01* X-52904Y281219D01* X-52995Y281248D01* X-53084Y281284D01* X-53119Y281288D01* X-53139Y281294D01* X-53171Y281294D01* X-53251Y281302D01* X-58293Y281302D01* X-58312Y281299D01* X-58332Y281301D01* X-58434Y281279D01* X-58536Y281263D01* X-58553Y281253D01* X-58573Y281249D01* X-58662Y281196D01* X-58753Y281147D01* X-58767Y281133D01* X-58784Y281123D01* X-58851Y281044D01* X-58922Y280969D01* X-58931Y280951D01* X-58944Y280936D01* X-58982Y280840D01* X-59026Y280746D01* X-59028Y280726D01* X-59036Y280708D01* X-59054Y280541D01* X-59054Y280540D01* X-59055Y280540D01* X-59075Y280537D01* X-59094Y280539D01* X-59196Y280517D01* X-59298Y280500D01* X-59315Y280491D01* X-59335Y280487D01* X-59424Y280434D01* X-59515Y280385D01* X-59529Y280371D01* X-59546Y280361D01* X-59613Y280282D01* X-59685Y280207D01* X-59693Y280189D01* X-59706Y280174D01* X-59745Y280077D01* X-59788Y279984D01* X-59790Y279964D01* X-59798Y279946D01* X-59816Y279779D01* X-59816Y274886D01* X-59813Y274866D01* X-59815Y274847D01* X-59793Y274745D01* X-59777Y274643D01* X-59767Y274626D01* X-59763Y274606D01* X-59710Y274517D01* X-59687Y274474D01* X-59687Y259846D01* X-59684Y259826D01* X-59686Y259807D01* X-59664Y259705D01* X-59647Y259603D01* X-59638Y259586D01* X-59634Y259566D01* X-59581Y259477D01* X-59532Y259386D01* X-59518Y259372D01* X-59508Y259355D01* X-59429Y259288D01* X-59354Y259217D01* X-59336Y259208D01* X-59321Y259195D01* X-59225Y259156D01* X-59131Y259113D01* X-59111Y259111D01* X-59093Y259103D01* X-58926Y259085D01* X-57402Y259085D01* X-57382Y259088D01* G37* %LPC*% G36* X-363890Y173227D02* X-363890Y173227D01* X-363689Y174500D01* X-363108Y176287D01* X-362255Y177961D01* X-361150Y179482D01* X-359822Y180810D01* X-358301Y181915D01* X-356627Y182768D01* X-354840Y183349D01* X-353567Y183550D01* X-353567Y173227D01* X-363890Y173227D01* G37* %LPD*% %LPC*% G36* X-161198Y171449D02* X-161198Y171449D01* X-160997Y172722D01* X-160416Y174509D01* X-159563Y176183D01* X-158458Y177704D01* X-157130Y179032D01* X-155609Y180137D01* X-153935Y180990D01* X-152148Y181571D01* X-150875Y181772D01* X-150875Y171449D01* X-161198Y171449D01* G37* %LPD*% %LPC*% G36* X-354840Y160059D02* X-354840Y160059D01* X-356627Y160640D01* X-358301Y161493D01* X-359822Y162598D01* X-361150Y163926D01* X-362255Y165447D01* X-363108Y167121D01* X-363689Y168908D01* X-363890Y170181D01* X-353567Y170181D01* X-353567Y159858D01* X-354840Y160059D01* G37* %LPD*% %LPC*% G36* X-152148Y158281D02* X-152148Y158281D01* X-153935Y158862D01* X-155609Y159715D01* X-157130Y160820D01* X-158458Y162148D01* X-159563Y163669D01* X-160416Y165343D01* X-160997Y167130D01* X-161198Y168403D01* X-150875Y168403D01* X-150875Y158080D01* X-152148Y158281D01* G37* %LPD*% %LPC*% G36* X-147829Y171449D02* X-147829Y171449D01* X-147829Y181772D01* X-146556Y181571D01* X-144769Y180990D01* X-143095Y180137D01* X-141574Y179032D01* X-140246Y177704D01* X-139141Y176183D01* X-138288Y174509D01* X-137707Y172722D01* X-137506Y171449D01* X-147829Y171449D01* G37* %LPD*% %LPC*% G36* X-350521Y173227D02* X-350521Y173227D01* X-350521Y183550D01* X-349248Y183349D01* X-347461Y182768D01* X-345787Y181915D01* X-344266Y180810D01* X-342938Y179482D01* X-341833Y177961D01* X-340980Y176287D01* X-340399Y174500D01* X-340198Y173227D01* X-350521Y173227D01* G37* %LPD*% %LPC*% G36* X-147829Y168403D02* X-147829Y168403D01* X-137506Y168403D01* X-137707Y167130D01* X-138288Y165343D01* X-139141Y163669D01* X-140246Y162148D01* X-141574Y160820D01* X-143095Y159715D01* X-144769Y158862D01* X-146556Y158281D01* X-147829Y158080D01* X-147829Y168403D01* G37* %LPD*% %LPC*% G36* X-350521Y170181D02* X-350521Y170181D01* X-340198Y170181D01* X-340399Y168908D01* X-340980Y167121D01* X-341833Y165447D01* X-342938Y163926D01* X-344266Y162598D01* X-345787Y161493D01* X-347461Y160640D01* X-349248Y160059D01* X-350521Y159858D01* X-350521Y170181D01* G37* %LPD*% %LPC*% G36* X-87354Y259204D02* X-87354Y259204D01* X-87372Y259206D01* X-92076Y259206D01* X-92076Y262891D01* X-89836Y262891D01* X-89189Y262718D01* X-88610Y262383D01* X-88137Y261910D01* X-87779Y261290D01* X-87718Y261216D01* X-87664Y261138D01* X-87641Y261121D01* X-87623Y261099D01* X-87542Y261048D01* X-87465Y260992D01* X-87438Y260983D01* X-87415Y260968D01* X-87322Y260946D01* X-87231Y260917D01* X-87203Y260918D01* X-87175Y260911D01* X-87081Y260919D01* X-86985Y260921D01* X-86958Y260930D01* X-86930Y260933D01* X-86843Y260971D01* X-86753Y261003D01* X-86731Y261020D01* X-86705Y261032D01* X-86635Y261096D01* X-86560Y261154D01* X-86539Y261183D01* X-86523Y261197D01* X-86507Y261226D01* X-86460Y261290D01* X-86103Y261908D01* X-85630Y262381D01* X-85051Y262716D01* X-84404Y262889D01* X-82164Y262889D01* X-82164Y259204D01* X-87354Y259204D01* G37* %LPD*% %LPC*% G36* X-208505Y114361D02* X-208505Y114361D01* X-208505Y122653D01* X-207169Y122653D01* X-206523Y122480D01* X-205944Y122145D01* X-205471Y121672D01* X-205136Y121093D01* X-204963Y120446D01* X-204963Y114361D01* X-208505Y114361D01* G37* %LPD*% %LPC*% G36* X-229615Y189606D02* X-229615Y189606D01* X-229615Y191084D01* X-229442Y191731D01* X-229107Y192310D01* X-228634Y192783D01* X-228055Y193118D01* X-227408Y193291D01* X-225168Y193291D01* X-225168Y189606D01* X-229615Y189606D01* G37* %LPD*% %LPC*% G36* X-51563Y232284D02* X-51563Y232284D01* X-51563Y234524D01* X-51390Y235171D01* X-51055Y235750D01* X-50582Y236223D01* X-50003Y236558D01* X-49356Y236731D01* X-47878Y236731D01* X-47878Y232284D01* X-51563Y232284D01* G37* %LPD*% %LPC*% G36* X-286001Y196972D02* X-286001Y196972D01* X-286001Y198450D01* X-285828Y199097D01* X-285493Y199676D01* X-285020Y200149D01* X-284441Y200484D01* X-283794Y200657D01* X-281554Y200657D01* X-281554Y196972D01* X-286001Y196972D01* G37* %LPD*% %LPC*% G36* X-279270Y196972D02* X-279270Y196972D01* X-279270Y200657D01* X-277030Y200657D01* X-276383Y200484D01* X-275804Y200149D01* X-275331Y199676D01* X-274996Y199097D01* X-274823Y198450D01* X-274823Y196972D01* X-279270Y196972D01* G37* %LPD*% %LPC*% G36* X-157100Y205360D02* X-157100Y205360D01* X-152653Y205360D01* X-152653Y203882D01* X-152826Y203235D01* X-153161Y202656D01* X-153634Y202183D01* X-154213Y201848D01* X-154860Y201675D01* X-157100Y201675D01* X-157100Y205360D01* G37* %LPD*% G36* X-263763Y185007D02* X-263763Y185007D01* X-263763Y185008D01* X-263763Y187408D01* X-263765Y187410D01* X-263764Y187412D01* X-265264Y188912D01* X-265267Y188912D01* X-265268Y188913D01* X-266368Y188913D01* X-266373Y188909D01* X-266373Y188908D01* X-266373Y185008D01* X-266369Y185003D01* X-266368Y185003D01* X-263768Y185003D01* X-263763Y185007D01* G37* G36* X-256363Y193107D02* X-256363Y193107D01* X-256363Y193108D01* X-256363Y197008D01* X-256367Y197013D01* X-256368Y197013D01* X-258968Y197013D01* X-258973Y197009D01* X-258973Y197008D01* X-258973Y194608D01* X-258971Y194606D01* X-258972Y194604D01* X-257472Y193104D01* X-257469Y193104D01* X-257468Y193103D01* X-256368Y193103D01* X-256363Y193107D01* G37* G36* X-256363Y185007D02* X-256363Y185007D01* X-256363Y185008D01* X-256363Y188908D01* X-256367Y188913D01* X-256368Y188913D01* X-257468Y188913D01* X-257470Y188911D01* X-257472Y188912D01* X-258972Y187412D01* X-258972Y187410D01* X-258973Y187409D01* X-258973Y187408D01* X-258973Y185008D01* X-258969Y185003D01* X-258968Y185003D01* X-256368Y185003D01* X-256363Y185007D01* G37* %LPC*% G36* X-268909Y196569D02* X-268909Y196569D01* X-268909Y197342D01* X-268736Y197989D01* X-268401Y198568D01* X-267928Y199041D01* X-267349Y199376D01* X-266702Y199549D01* X-265829Y199549D01* X-265829Y197013D01* X-266368Y197013D01* X-266373Y197009D01* X-266373Y197008D01* X-266373Y196569D01* X-268909Y196569D01* G37* %LPD*% %LPC*% G36* X-352045Y171703D02* X-352045Y171703D01* X-352045Y171705D01* X-352043Y171705D01* X-352043Y171703D01* X-352045Y171703D01* G37* %LPD*% %LPC*% G36* X-149353Y169925D02* X-149353Y169925D01* X-149353Y169927D01* X-149351Y169927D01* X-149351Y169925D01* X-149353Y169925D01* G37* %LPD*% D10* X-263396Y252099D03* X-253744Y252099D03* X-38606Y192790D03* X-48258Y192790D03* D11* X-261880Y271016D03* X-261880Y280668D03* X-280412Y186178D03* X-280412Y195830D03* D10* X-263396Y238631D03* X-253744Y238631D03* X-37084Y231142D03* X-46736Y231142D03* D11* X-81022Y248410D03* X-81022Y258062D03* X-248158Y280662D03* X-248158Y271010D03* D12* X-50374Y178312D03* X-60874Y178312D03* D10* X-58674Y280160D03* X-68326Y280160D03* D11* X-42422Y209800D03* X-42422Y219452D03* D13* X-215138Y132670D03* X-215138Y142670D03* D14* X-235682Y268042D03* X-235682Y263042D03* X-235682Y258042D03* X-235682Y253042D03* X-235682Y248042D03* X-235682Y243042D03* X-235682Y238042D03* X-235682Y233042D03* X-235682Y228042D03* X-235682Y223042D03* X-235682Y218042D03* X-235682Y213042D03* D15* X-229432Y206792D03* X-224432Y206792D03* X-219432Y206792D03* X-214432Y206792D03* X-209432Y206792D03* X-204432Y206792D03* X-199432Y206792D03* X-194432Y206792D03* X-189432Y206792D03* X-184432Y206792D03* X-179432Y206792D03* X-174432Y206792D03* D14* X-168182Y213042D03* X-168182Y218042D03* X-168182Y223042D03* X-168182Y228042D03* X-168182Y233042D03* X-168182Y238042D03* X-168182Y243042D03* X-168182Y248042D03* X-168182Y253042D03* X-168182Y258042D03* X-168182Y263042D03* X-168182Y268042D03* D15* X-174432Y274292D03* X-179432Y274292D03* X-184432Y274292D03* X-189432Y274292D03* X-194432Y274292D03* X-199432Y274292D03* X-204432Y274292D03* X-209432Y274292D03* X-214432Y274292D03* X-219432Y274292D03* X-224432Y274292D03* X-229432Y274292D03* D16* X-201932Y240542D03* D17* X-43114Y247784D02* X-43114Y251384D01* X-43114Y247784D02* X-47214Y247784D01* X-47214Y251384D01* X-43114Y251384D01* X-43114Y248639D02* X-47214Y248639D01* X-47214Y249494D02* X-43114Y249494D01* X-43114Y250349D02* X-47214Y250349D01* X-47214Y251204D02* X-43114Y251204D01* X-43114Y257284D02* X-43114Y260884D01* X-43114Y257284D02* X-47214Y257284D01* X-47214Y260884D01* X-43114Y260884D01* X-43114Y258139D02* X-47214Y258139D01* X-47214Y258994D02* X-43114Y258994D01* X-43114Y259849D02* X-47214Y259849D01* X-47214Y260704D02* X-43114Y260704D01* X-43114Y266784D02* X-43114Y270384D01* X-43114Y266784D02* X-47214Y266784D01* X-47214Y270384D01* X-43114Y270384D01* X-43114Y267639D02* X-47214Y267639D01* X-47214Y268494D02* X-43114Y268494D01* X-43114Y269349D02* X-47214Y269349D01* X-47214Y270204D02* X-43114Y270204D01* X-69114Y270384D02* X-69114Y266784D01* X-73214Y266784D01* X-73214Y270384D01* X-69114Y270384D01* X-69114Y267639D02* X-73214Y267639D01* X-73214Y268494D02* X-69114Y268494D01* X-69114Y269349D02* X-73214Y269349D01* X-73214Y270204D02* X-69114Y270204D01* X-69114Y260884D02* X-69114Y257284D01* X-73214Y257284D01* X-73214Y260884D01* X-69114Y260884D01* X-69114Y258139D02* X-73214Y258139D01* X-73214Y258994D02* X-69114Y258994D01* X-69114Y259849D02* X-73214Y259849D01* X-73214Y260704D02* X-69114Y260704D01* X-69114Y251384D02* X-69114Y247784D01* X-73214Y247784D01* X-73214Y251384D01* X-69114Y251384D01* X-69114Y248639D02* X-73214Y248639D01* X-73214Y249494D02* X-69114Y249494D01* X-69114Y250349D02* X-73214Y250349D01* X-73214Y251204D02* X-69114Y251204D01* D18* X-51164Y248334D02* X-51164Y269834D01* X-51164Y248334D02* X-65164Y248334D01* X-65164Y269834D01* X-51164Y269834D01* X-51164Y251659D02* X-65164Y251659D01* X-65164Y254984D02* X-51164Y254984D01* X-51164Y258309D02* X-65164Y258309D01* X-65164Y261634D02* X-51164Y261634D01* X-51164Y264959D02* X-65164Y264959D01* X-65164Y268284D02* X-51164Y268284D01* D19* X-257668Y195808D03* X-265068Y195808D03* X-265068Y186208D03* X-257668Y186208D03* D20* G36* X-265044Y191008D02* X-261368Y194684D01* X-257692Y191008D01* X-261368Y187332D01* X-265044Y191008D01* G37* D13* X-229362Y132670D03* X-229362Y142670D03* D11* X-224026Y188464D03* X-224026Y178812D03* D21* X-235504Y113362D03* X-229004Y113362D03* X-222504Y113362D03* X-216004Y113362D03* X-209504Y113362D03* D22* X-254504Y111112D03* X-190504Y111112D03* D23* X-256754Y86612D03* X-188254Y86612D03* D24* X-234504Y86612D03* X-210504Y86612D03* D25* X-116840Y174244D03* X-149352Y169926D03* D26* X-310388Y263652D03* X-376428Y263652D03* D25* X-352044Y171704D03* X-315976Y168656D03* D27* X-150978Y261774D02* X-143138Y261774D01* X-150978Y261774D02* X-150978Y264114D01* X-143138Y264114D01* X-143138Y261774D01* X-143138Y262021D02* X-150978Y262021D01* X-150978Y262268D02* X-143138Y262268D01* X-143138Y262515D02* X-150978Y262515D01* X-150978Y262762D02* X-143138Y262762D01* X-143138Y263009D02* X-150978Y263009D01* X-150978Y263256D02* X-143138Y263256D01* X-143138Y263503D02* X-150978Y263503D01* X-150978Y263750D02* X-143138Y263750D01* X-143138Y263997D02* X-150978Y263997D01* X-150978Y256774D02* X-143138Y256774D01* X-150978Y256774D02* X-150978Y259114D01* X-143138Y259114D01* X-143138Y256774D01* X-143138Y257021D02* X-150978Y257021D01* X-150978Y257268D02* X-143138Y257268D01* X-143138Y257515D02* X-150978Y257515D01* X-150978Y257762D02* X-143138Y257762D01* X-143138Y258009D02* X-150978Y258009D01* X-150978Y258256D02* X-143138Y258256D01* X-143138Y258503D02* X-150978Y258503D01* X-150978Y258750D02* X-143138Y258750D01* X-143138Y258997D02* X-150978Y258997D01* X-150978Y251774D02* X-143138Y251774D01* X-150978Y251774D02* X-150978Y254114D01* X-143138Y254114D01* X-143138Y251774D01* X-143138Y252021D02* X-150978Y252021D01* X-150978Y252268D02* X-143138Y252268D01* X-143138Y252515D02* X-150978Y252515D01* X-150978Y252762D02* X-143138Y252762D01* X-143138Y253009D02* X-150978Y253009D01* X-150978Y253256D02* X-143138Y253256D01* X-143138Y253503D02* X-150978Y253503D01* X-150978Y253750D02* X-143138Y253750D01* X-143138Y253997D02* X-150978Y253997D01* X-150978Y246774D02* X-143138Y246774D01* X-150978Y246774D02* X-150978Y249114D01* X-143138Y249114D01* X-143138Y246774D01* X-143138Y247021D02* X-150978Y247021D01* X-150978Y247268D02* X-143138Y247268D01* X-143138Y247515D02* X-150978Y247515D01* X-150978Y247762D02* X-143138Y247762D01* X-143138Y248009D02* X-150978Y248009D01* X-150978Y248256D02* X-143138Y248256D01* X-143138Y248503D02* X-150978Y248503D01* X-150978Y248750D02* X-143138Y248750D01* X-143138Y248997D02* X-150978Y248997D01* X-150978Y241774D02* X-143138Y241774D01* X-150978Y241774D02* X-150978Y244114D01* X-143138Y244114D01* X-143138Y241774D01* X-143138Y242021D02* X-150978Y242021D01* X-150978Y242268D02* X-143138Y242268D01* X-143138Y242515D02* X-150978Y242515D01* X-150978Y242762D02* X-143138Y242762D01* X-143138Y243009D02* X-150978Y243009D01* X-150978Y243256D02* X-143138Y243256D01* X-143138Y243503D02* X-150978Y243503D01* X-150978Y243750D02* X-143138Y243750D01* X-143138Y243997D02* X-150978Y243997D01* X-150978Y236774D02* X-143138Y236774D01* X-150978Y236774D02* X-150978Y239114D01* X-143138Y239114D01* X-143138Y236774D01* X-143138Y237021D02* X-150978Y237021D01* X-150978Y237268D02* X-143138Y237268D01* X-143138Y237515D02* X-150978Y237515D01* X-150978Y237762D02* X-143138Y237762D01* X-143138Y238009D02* X-150978Y238009D01* X-150978Y238256D02* X-143138Y238256D01* X-143138Y238503D02* X-150978Y238503D01* X-150978Y238750D02* X-143138Y238750D01* X-143138Y238997D02* X-150978Y238997D01* X-138838Y234814D02* X-138838Y226974D01* X-141178Y226974D01* X-141178Y234814D01* X-138838Y234814D01* X-138838Y227221D02* X-141178Y227221D01* X-141178Y227468D02* X-138838Y227468D01* X-138838Y227715D02* X-141178Y227715D01* X-141178Y227962D02* X-138838Y227962D01* X-138838Y228209D02* X-141178Y228209D01* X-141178Y228456D02* X-138838Y228456D01* X-138838Y228703D02* X-141178Y228703D01* X-141178Y228950D02* X-138838Y228950D01* X-138838Y229197D02* X-141178Y229197D01* X-141178Y229444D02* X-138838Y229444D01* X-138838Y229691D02* X-141178Y229691D01* X-141178Y229938D02* X-138838Y229938D01* X-138838Y230185D02* X-141178Y230185D01* X-141178Y230432D02* X-138838Y230432D01* X-138838Y230679D02* X-141178Y230679D01* X-141178Y230926D02* X-138838Y230926D01* X-138838Y231173D02* X-141178Y231173D01* X-141178Y231420D02* X-138838Y231420D01* X-138838Y231667D02* X-141178Y231667D01* X-141178Y231914D02* X-138838Y231914D01* X-138838Y232161D02* X-141178Y232161D01* X-141178Y232408D02* X-138838Y232408D01* X-138838Y232655D02* X-141178Y232655D01* X-141178Y232902D02* X-138838Y232902D01* X-138838Y233149D02* X-141178Y233149D01* X-141178Y233396D02* X-138838Y233396D01* X-138838Y233643D02* X-141178Y233643D01* X-141178Y233890D02* X-138838Y233890D01* X-138838Y234137D02* X-141178Y234137D01* X-141178Y234384D02* X-138838Y234384D01* X-138838Y234631D02* X-141178Y234631D01* X-133838Y234814D02* X-133838Y226974D01* X-136178Y226974D01* X-136178Y234814D01* X-133838Y234814D01* X-133838Y227221D02* X-136178Y227221D01* X-136178Y227468D02* X-133838Y227468D01* X-133838Y227715D02* X-136178Y227715D01* X-136178Y227962D02* X-133838Y227962D01* X-133838Y228209D02* X-136178Y228209D01* X-136178Y228456D02* X-133838Y228456D01* X-133838Y228703D02* X-136178Y228703D01* X-136178Y228950D02* X-133838Y228950D01* X-133838Y229197D02* X-136178Y229197D01* X-136178Y229444D02* X-133838Y229444D01* X-133838Y229691D02* X-136178Y229691D01* X-136178Y229938D02* X-133838Y229938D01* X-133838Y230185D02* X-136178Y230185D01* X-136178Y230432D02* X-133838Y230432D01* X-133838Y230679D02* X-136178Y230679D01* X-136178Y230926D02* X-133838Y230926D01* X-133838Y231173D02* X-136178Y231173D01* X-136178Y231420D02* X-133838Y231420D01* X-133838Y231667D02* X-136178Y231667D01* X-136178Y231914D02* X-133838Y231914D01* X-133838Y232161D02* X-136178Y232161D01* X-136178Y232408D02* X-133838Y232408D01* X-133838Y232655D02* X-136178Y232655D01* X-136178Y232902D02* X-133838Y232902D01* X-133838Y233149D02* X-136178Y233149D01* X-136178Y233396D02* X-133838Y233396D01* X-133838Y233643D02* X-136178Y233643D01* X-136178Y233890D02* X-133838Y233890D01* X-133838Y234137D02* X-136178Y234137D01* X-136178Y234384D02* X-133838Y234384D01* X-133838Y234631D02* X-136178Y234631D01* X-128838Y234814D02* X-128838Y226974D01* X-131178Y226974D01* X-131178Y234814D01* X-128838Y234814D01* X-128838Y227221D02* X-131178Y227221D01* X-131178Y227468D02* X-128838Y227468D01* X-128838Y227715D02* X-131178Y227715D01* X-131178Y227962D02* X-128838Y227962D01* X-128838Y228209D02* X-131178Y228209D01* X-131178Y228456D02* X-128838Y228456D01* X-128838Y228703D02* X-131178Y228703D01* X-131178Y228950D02* X-128838Y228950D01* X-128838Y229197D02* X-131178Y229197D01* X-131178Y229444D02* X-128838Y229444D01* X-128838Y229691D02* X-131178Y229691D01* X-131178Y229938D02* X-128838Y229938D01* X-128838Y230185D02* X-131178Y230185D01* X-131178Y230432D02* X-128838Y230432D01* X-128838Y230679D02* X-131178Y230679D01* X-131178Y230926D02* X-128838Y230926D01* X-128838Y231173D02* X-131178Y231173D01* X-131178Y231420D02* X-128838Y231420D01* X-128838Y231667D02* X-131178Y231667D01* X-131178Y231914D02* X-128838Y231914D01* X-128838Y232161D02* X-131178Y232161D01* X-131178Y232408D02* X-128838Y232408D01* X-128838Y232655D02* X-131178Y232655D01* X-131178Y232902D02* X-128838Y232902D01* X-128838Y233149D02* X-131178Y233149D01* X-131178Y233396D02* X-128838Y233396D01* X-128838Y233643D02* X-131178Y233643D01* X-131178Y233890D02* X-128838Y233890D01* X-128838Y234137D02* X-131178Y234137D01* X-131178Y234384D02* X-128838Y234384D01* X-128838Y234631D02* X-131178Y234631D01* X-123838Y234814D02* X-123838Y226974D01* X-126178Y226974D01* X-126178Y234814D01* X-123838Y234814D01* X-123838Y227221D02* X-126178Y227221D01* X-126178Y227468D02* X-123838Y227468D01* X-123838Y227715D02* X-126178Y227715D01* X-126178Y227962D02* X-123838Y227962D01* X-123838Y228209D02* X-126178Y228209D01* X-126178Y228456D02* X-123838Y228456D01* X-123838Y228703D02* X-126178Y228703D01* X-126178Y228950D02* X-123838Y228950D01* X-123838Y229197D02* X-126178Y229197D01* X-126178Y229444D02* X-123838Y229444D01* X-123838Y229691D02* X-126178Y229691D01* X-126178Y229938D02* X-123838Y229938D01* X-123838Y230185D02* X-126178Y230185D01* X-126178Y230432D02* X-123838Y230432D01* X-123838Y230679D02* X-126178Y230679D01* X-126178Y230926D02* X-123838Y230926D01* X-123838Y231173D02* X-126178Y231173D01* X-126178Y231420D02* X-123838Y231420D01* X-123838Y231667D02* X-126178Y231667D01* X-126178Y231914D02* X-123838Y231914D01* X-123838Y232161D02* X-126178Y232161D01* X-126178Y232408D02* X-123838Y232408D01* X-123838Y232655D02* X-126178Y232655D01* X-126178Y232902D02* X-123838Y232902D01* X-123838Y233149D02* X-126178Y233149D01* X-126178Y233396D02* X-123838Y233396D01* X-123838Y233643D02* X-126178Y233643D01* X-126178Y233890D02* X-123838Y233890D01* X-123838Y234137D02* X-126178Y234137D01* X-126178Y234384D02* X-123838Y234384D01* X-123838Y234631D02* X-126178Y234631D01* X-118838Y234814D02* X-118838Y226974D01* X-121178Y226974D01* X-121178Y234814D01* X-118838Y234814D01* X-118838Y227221D02* X-121178Y227221D01* X-121178Y227468D02* X-118838Y227468D01* X-118838Y227715D02* X-121178Y227715D01* X-121178Y227962D02* X-118838Y227962D01* X-118838Y228209D02* X-121178Y228209D01* X-121178Y228456D02* X-118838Y228456D01* X-118838Y228703D02* X-121178Y228703D01* X-121178Y228950D02* X-118838Y228950D01* X-118838Y229197D02* X-121178Y229197D01* X-121178Y229444D02* X-118838Y229444D01* X-118838Y229691D02* X-121178Y229691D01* X-121178Y229938D02* X-118838Y229938D01* X-118838Y230185D02* X-121178Y230185D01* X-121178Y230432D02* X-118838Y230432D01* X-118838Y230679D02* X-121178Y230679D01* X-121178Y230926D02* X-118838Y230926D01* X-118838Y231173D02* X-121178Y231173D01* X-121178Y231420D02* X-118838Y231420D01* X-118838Y231667D02* X-121178Y231667D01* X-121178Y231914D02* X-118838Y231914D01* X-118838Y232161D02* X-121178Y232161D01* X-121178Y232408D02* X-118838Y232408D01* X-118838Y232655D02* X-121178Y232655D01* X-121178Y232902D02* X-118838Y232902D01* X-118838Y233149D02* X-121178Y233149D01* X-121178Y233396D02* X-118838Y233396D01* X-118838Y233643D02* X-121178Y233643D01* X-121178Y233890D02* X-118838Y233890D01* X-118838Y234137D02* X-121178Y234137D01* X-121178Y234384D02* X-118838Y234384D01* X-118838Y234631D02* X-121178Y234631D01* X-113838Y234814D02* X-113838Y226974D01* X-116178Y226974D01* X-116178Y234814D01* X-113838Y234814D01* X-113838Y227221D02* X-116178Y227221D01* X-116178Y227468D02* X-113838Y227468D01* X-113838Y227715D02* X-116178Y227715D01* X-116178Y227962D02* X-113838Y227962D01* X-113838Y228209D02* X-116178Y228209D01* X-116178Y228456D02* X-113838Y228456D01* X-113838Y228703D02* X-116178Y228703D01* X-116178Y228950D02* X-113838Y228950D01* X-113838Y229197D02* X-116178Y229197D01* X-116178Y229444D02* X-113838Y229444D01* X-113838Y229691D02* X-116178Y229691D01* X-116178Y229938D02* X-113838Y229938D01* X-113838Y230185D02* X-116178Y230185D01* X-116178Y230432D02* X-113838Y230432D01* X-113838Y230679D02* X-116178Y230679D01* X-116178Y230926D02* X-113838Y230926D01* X-113838Y231173D02* X-116178Y231173D01* X-116178Y231420D02* X-113838Y231420D01* X-113838Y231667D02* X-116178Y231667D01* X-116178Y231914D02* X-113838Y231914D01* X-113838Y232161D02* X-116178Y232161D01* X-116178Y232408D02* X-113838Y232408D01* X-113838Y232655D02* X-116178Y232655D01* X-116178Y232902D02* X-113838Y232902D01* X-113838Y233149D02* X-116178Y233149D01* X-116178Y233396D02* X-113838Y233396D01* X-113838Y233643D02* X-116178Y233643D01* X-116178Y233890D02* X-113838Y233890D01* X-113838Y234137D02* X-116178Y234137D01* X-116178Y234384D02* X-113838Y234384D01* X-113838Y234631D02* X-116178Y234631D01* X-111878Y236774D02* X-104038Y236774D01* X-111878Y236774D02* X-111878Y239114D01* X-104038Y239114D01* X-104038Y236774D01* X-104038Y237021D02* X-111878Y237021D01* X-111878Y237268D02* X-104038Y237268D01* X-104038Y237515D02* X-111878Y237515D01* X-111878Y237762D02* X-104038Y237762D01* X-104038Y238009D02* X-111878Y238009D01* X-111878Y238256D02* X-104038Y238256D01* X-104038Y238503D02* X-111878Y238503D01* X-111878Y238750D02* X-104038Y238750D01* X-104038Y238997D02* X-111878Y238997D01* X-111878Y241774D02* X-104038Y241774D01* X-111878Y241774D02* X-111878Y244114D01* X-104038Y244114D01* X-104038Y241774D01* X-104038Y242021D02* X-111878Y242021D01* X-111878Y242268D02* X-104038Y242268D01* X-104038Y242515D02* X-111878Y242515D01* X-111878Y242762D02* X-104038Y242762D01* X-104038Y243009D02* X-111878Y243009D01* X-111878Y243256D02* X-104038Y243256D01* X-104038Y243503D02* X-111878Y243503D01* X-111878Y243750D02* X-104038Y243750D01* X-104038Y243997D02* X-111878Y243997D01* X-111878Y246774D02* X-104038Y246774D01* X-111878Y246774D02* X-111878Y249114D01* X-104038Y249114D01* X-104038Y246774D01* X-104038Y247021D02* X-111878Y247021D01* X-111878Y247268D02* X-104038Y247268D01* X-104038Y247515D02* X-111878Y247515D01* X-111878Y247762D02* X-104038Y247762D01* X-104038Y248009D02* X-111878Y248009D01* X-111878Y248256D02* X-104038Y248256D01* X-104038Y248503D02* X-111878Y248503D01* X-111878Y248750D02* X-104038Y248750D01* X-104038Y248997D02* X-111878Y248997D01* X-111878Y251774D02* X-104038Y251774D01* X-111878Y251774D02* X-111878Y254114D01* X-104038Y254114D01* X-104038Y251774D01* X-104038Y252021D02* X-111878Y252021D01* X-111878Y252268D02* X-104038Y252268D01* X-104038Y252515D02* X-111878Y252515D01* X-111878Y252762D02* X-104038Y252762D01* X-104038Y253009D02* X-111878Y253009D01* X-111878Y253256D02* X-104038Y253256D01* X-104038Y253503D02* X-111878Y253503D01* X-111878Y253750D02* X-104038Y253750D01* X-104038Y253997D02* X-111878Y253997D01* X-111878Y256774D02* X-104038Y256774D01* X-111878Y256774D02* X-111878Y259114D01* X-104038Y259114D01* X-104038Y256774D01* X-104038Y257021D02* X-111878Y257021D01* X-111878Y257268D02* X-104038Y257268D01* X-104038Y257515D02* X-111878Y257515D01* X-111878Y257762D02* X-104038Y257762D01* X-104038Y258009D02* X-111878Y258009D01* X-111878Y258256D02* X-104038Y258256D01* X-104038Y258503D02* X-111878Y258503D01* X-111878Y258750D02* X-104038Y258750D01* X-104038Y258997D02* X-111878Y258997D01* X-111878Y261774D02* X-104038Y261774D01* X-111878Y261774D02* X-111878Y264114D01* X-104038Y264114D01* X-104038Y261774D01* X-104038Y262021D02* X-111878Y262021D01* X-111878Y262268D02* X-104038Y262268D01* X-104038Y262515D02* X-111878Y262515D01* X-111878Y262762D02* X-104038Y262762D01* X-104038Y263009D02* X-111878Y263009D01* X-111878Y263256D02* X-104038Y263256D01* X-104038Y263503D02* X-111878Y263503D01* X-111878Y263750D02* X-104038Y263750D01* X-104038Y263997D02* X-111878Y263997D01* X-113838Y266074D02* X-113838Y273914D01* X-113838Y266074D02* X-116178Y266074D01* X-116178Y273914D01* X-113838Y273914D01* X-113838Y266321D02* X-116178Y266321D01* X-116178Y266568D02* X-113838Y266568D01* X-113838Y266815D02* X-116178Y266815D01* X-116178Y267062D02* X-113838Y267062D01* X-113838Y267309D02* X-116178Y267309D01* X-116178Y267556D02* X-113838Y267556D01* X-113838Y267803D02* X-116178Y267803D01* X-116178Y268050D02* X-113838Y268050D01* X-113838Y268297D02* X-116178Y268297D01* X-116178Y268544D02* X-113838Y268544D01* X-113838Y268791D02* X-116178Y268791D01* X-116178Y269038D02* X-113838Y269038D01* X-113838Y269285D02* X-116178Y269285D01* X-116178Y269532D02* X-113838Y269532D01* X-113838Y269779D02* X-116178Y269779D01* X-116178Y270026D02* X-113838Y270026D01* X-113838Y270273D02* X-116178Y270273D01* X-116178Y270520D02* X-113838Y270520D01* X-113838Y270767D02* X-116178Y270767D01* X-116178Y271014D02* X-113838Y271014D01* X-113838Y271261D02* X-116178Y271261D01* X-116178Y271508D02* X-113838Y271508D01* X-113838Y271755D02* X-116178Y271755D01* X-116178Y272002D02* X-113838Y272002D01* X-113838Y272249D02* X-116178Y272249D01* X-116178Y272496D02* X-113838Y272496D01* X-113838Y272743D02* X-116178Y272743D01* X-116178Y272990D02* X-113838Y272990D01* X-113838Y273237D02* X-116178Y273237D01* X-116178Y273484D02* X-113838Y273484D01* X-113838Y273731D02* X-116178Y273731D01* X-118838Y273914D02* X-118838Y266074D01* X-121178Y266074D01* X-121178Y273914D01* X-118838Y273914D01* X-118838Y266321D02* X-121178Y266321D01* X-121178Y266568D02* X-118838Y266568D01* X-118838Y266815D02* X-121178Y266815D01* X-121178Y267062D02* X-118838Y267062D01* X-118838Y267309D02* X-121178Y267309D01* X-121178Y267556D02* X-118838Y267556D01* X-118838Y267803D02* X-121178Y267803D01* X-121178Y268050D02* X-118838Y268050D01* X-118838Y268297D02* X-121178Y268297D01* X-121178Y268544D02* X-118838Y268544D01* X-118838Y268791D02* X-121178Y268791D01* X-121178Y269038D02* X-118838Y269038D01* X-118838Y269285D02* X-121178Y269285D01* X-121178Y269532D02* X-118838Y269532D01* X-118838Y269779D02* X-121178Y269779D01* X-121178Y270026D02* X-118838Y270026D01* X-118838Y270273D02* X-121178Y270273D01* X-121178Y270520D02* X-118838Y270520D01* X-118838Y270767D02* X-121178Y270767D01* X-121178Y271014D02* X-118838Y271014D01* X-118838Y271261D02* X-121178Y271261D01* X-121178Y271508D02* X-118838Y271508D01* X-118838Y271755D02* X-121178Y271755D01* X-121178Y272002D02* X-118838Y272002D01* X-118838Y272249D02* X-121178Y272249D01* X-121178Y272496D02* X-118838Y272496D01* X-118838Y272743D02* X-121178Y272743D01* X-121178Y272990D02* X-118838Y272990D01* X-118838Y273237D02* X-121178Y273237D01* X-121178Y273484D02* X-118838Y273484D01* X-118838Y273731D02* X-121178Y273731D01* X-123838Y273914D02* X-123838Y266074D01* X-126178Y266074D01* X-126178Y273914D01* X-123838Y273914D01* X-123838Y266321D02* X-126178Y266321D01* X-126178Y266568D02* X-123838Y266568D01* X-123838Y266815D02* X-126178Y266815D01* X-126178Y267062D02* X-123838Y267062D01* X-123838Y267309D02* X-126178Y267309D01* X-126178Y267556D02* X-123838Y267556D01* X-123838Y267803D02* X-126178Y267803D01* X-126178Y268050D02* X-123838Y268050D01* X-123838Y268297D02* X-126178Y268297D01* X-126178Y268544D02* X-123838Y268544D01* X-123838Y268791D02* X-126178Y268791D01* X-126178Y269038D02* X-123838Y269038D01* X-123838Y269285D02* X-126178Y269285D01* X-126178Y269532D02* X-123838Y269532D01* X-123838Y269779D02* X-126178Y269779D01* X-126178Y270026D02* X-123838Y270026D01* X-123838Y270273D02* X-126178Y270273D01* X-126178Y270520D02* X-123838Y270520D01* X-123838Y270767D02* X-126178Y270767D01* X-126178Y271014D02* X-123838Y271014D01* X-123838Y271261D02* X-126178Y271261D01* X-126178Y271508D02* X-123838Y271508D01* X-123838Y271755D02* X-126178Y271755D01* X-126178Y272002D02* X-123838Y272002D01* X-123838Y272249D02* X-126178Y272249D01* X-126178Y272496D02* X-123838Y272496D01* X-123838Y272743D02* X-126178Y272743D01* X-126178Y272990D02* X-123838Y272990D01* X-123838Y273237D02* X-126178Y273237D01* X-126178Y273484D02* X-123838Y273484D01* X-123838Y273731D02* X-126178Y273731D01* X-128838Y273914D02* X-128838Y266074D01* X-131178Y266074D01* X-131178Y273914D01* X-128838Y273914D01* X-128838Y266321D02* X-131178Y266321D01* X-131178Y266568D02* X-128838Y266568D01* X-128838Y266815D02* X-131178Y266815D01* X-131178Y267062D02* X-128838Y267062D01* X-128838Y267309D02* X-131178Y267309D01* X-131178Y267556D02* X-128838Y267556D01* X-128838Y267803D02* X-131178Y267803D01* X-131178Y268050D02* X-128838Y268050D01* X-128838Y268297D02* X-131178Y268297D01* X-131178Y268544D02* X-128838Y268544D01* X-128838Y268791D02* X-131178Y268791D01* X-131178Y269038D02* X-128838Y269038D01* X-128838Y269285D02* X-131178Y269285D01* X-131178Y269532D02* X-128838Y269532D01* X-128838Y269779D02* X-131178Y269779D01* X-131178Y270026D02* X-128838Y270026D01* X-128838Y270273D02* X-131178Y270273D01* X-131178Y270520D02* X-128838Y270520D01* X-128838Y270767D02* X-131178Y270767D01* X-131178Y271014D02* X-128838Y271014D01* X-128838Y271261D02* X-131178Y271261D01* X-131178Y271508D02* X-128838Y271508D01* X-128838Y271755D02* X-131178Y271755D01* X-131178Y272002D02* X-128838Y272002D01* X-128838Y272249D02* X-131178Y272249D01* X-131178Y272496D02* X-128838Y272496D01* X-128838Y272743D02* X-131178Y272743D01* X-131178Y272990D02* X-128838Y272990D01* X-128838Y273237D02* X-131178Y273237D01* X-131178Y273484D02* X-128838Y273484D01* X-128838Y273731D02* X-131178Y273731D01* X-133838Y273914D02* X-133838Y266074D01* X-136178Y266074D01* X-136178Y273914D01* X-133838Y273914D01* X-133838Y266321D02* X-136178Y266321D01* X-136178Y266568D02* X-133838Y266568D01* X-133838Y266815D02* X-136178Y266815D01* X-136178Y267062D02* X-133838Y267062D01* X-133838Y267309D02* X-136178Y267309D01* X-136178Y267556D02* X-133838Y267556D01* X-133838Y267803D02* X-136178Y267803D01* X-136178Y268050D02* X-133838Y268050D01* X-133838Y268297D02* X-136178Y268297D01* X-136178Y268544D02* X-133838Y268544D01* X-133838Y268791D02* X-136178Y268791D01* X-136178Y269038D02* X-133838Y269038D01* X-133838Y269285D02* X-136178Y269285D01* X-136178Y269532D02* X-133838Y269532D01* X-133838Y269779D02* X-136178Y269779D01* X-136178Y270026D02* X-133838Y270026D01* X-133838Y270273D02* X-136178Y270273D01* X-136178Y270520D02* X-133838Y270520D01* X-133838Y270767D02* X-136178Y270767D01* X-136178Y271014D02* X-133838Y271014D01* X-133838Y271261D02* X-136178Y271261D01* X-136178Y271508D02* X-133838Y271508D01* X-133838Y271755D02* X-136178Y271755D01* X-136178Y272002D02* X-133838Y272002D01* X-133838Y272249D02* X-136178Y272249D01* X-136178Y272496D02* X-133838Y272496D01* X-133838Y272743D02* X-136178Y272743D01* X-136178Y272990D02* X-133838Y272990D01* X-133838Y273237D02* X-136178Y273237D01* X-136178Y273484D02* X-133838Y273484D01* X-133838Y273731D02* X-136178Y273731D01* X-138838Y273914D02* X-138838Y266074D01* X-141178Y266074D01* X-141178Y273914D01* X-138838Y273914D01* X-138838Y266321D02* X-141178Y266321D01* X-141178Y266568D02* X-138838Y266568D01* X-138838Y266815D02* X-141178Y266815D01* X-141178Y267062D02* X-138838Y267062D01* X-138838Y267309D02* X-141178Y267309D01* X-141178Y267556D02* X-138838Y267556D01* X-138838Y267803D02* X-141178Y267803D01* X-141178Y268050D02* X-138838Y268050D01* X-138838Y268297D02* X-141178Y268297D01* X-141178Y268544D02* X-138838Y268544D01* X-138838Y268791D02* X-141178Y268791D01* X-141178Y269038D02* X-138838Y269038D01* X-138838Y269285D02* X-141178Y269285D01* X-141178Y269532D02* X-138838Y269532D01* X-138838Y269779D02* X-141178Y269779D01* X-141178Y270026D02* X-138838Y270026D01* X-138838Y270273D02* X-141178Y270273D01* X-141178Y270520D02* X-138838Y270520D01* X-138838Y270767D02* X-141178Y270767D01* X-141178Y271014D02* X-138838Y271014D01* X-138838Y271261D02* X-141178Y271261D01* X-141178Y271508D02* X-138838Y271508D01* X-138838Y271755D02* X-141178Y271755D01* X-141178Y272002D02* X-138838Y272002D01* X-138838Y272249D02* X-141178Y272249D01* X-141178Y272496D02* X-138838Y272496D01* X-138838Y272743D02* X-141178Y272743D01* X-141178Y272990D02* X-138838Y272990D01* X-138838Y273237D02* X-141178Y273237D01* X-141178Y273484D02* X-138838Y273484D01* X-138838Y273731D02* X-141178Y273731D01* D28* X-127508Y250444D03* D11* X-121920Y214376D03* X-121920Y204724D03* X-93218Y248412D03* X-93218Y258064D03* D10* X-82042Y271780D03* X-91694Y271780D03* D11* X-158242Y216154D03* X-158242Y206502D03* X-275336Y280670D03* X-275336Y271018D03* X-259842Y214122D03* X-259842Y223774D03* D29* X-134176Y205740D03* X-142684Y205740D03* X-134176Y217170D03* X-142684Y217170D03* D30* X-202946Y101092D03* D31* X-261368Y192108D02* X-265068Y195808D01* X-261368Y192108D02* X-261368Y191008D01* D30* X-219710Y256540D03* X-219710Y240030D03* X-200660Y256540D03* X-186690Y240030D03* X-186690Y223520D03* X-201930Y223520D03* X-42164Y180594D03* X-56388Y236474D03* D31* X-58404Y259260D02* X-71164Y268584D01* X-58373Y256863D02* X-57887Y256508D01* X-59135Y257756D02* X-58164Y259084D01* X-59135Y257756D02* X-57887Y256508D01* D32* X-58404Y259260D02* X-58674Y280160D01* X-58404Y259260D02* X-58373Y256863D01* X-58164Y259084D02* X-71164Y268584D01* D30* X-78740Y280416D03* X-244602Y124968D03* X-294132Y174498D03* X-152146Y274320D03* X-155702Y259080D03* D32* X-147058Y257944D02* X-135008Y257944D01* X-127508Y250444D01* X-93218Y258064D02* X-93216Y258062D01* X-81022Y258062D01* X-248158Y280662D02* X-248164Y280668D01* X-261880Y280668D01* D31* X-56388Y236474D02* X-51056Y231142D01* X-46736Y231142D01* X-56388Y236474D02* X-56388Y257308D01* X-58164Y259084D01* D30* X-291846Y279908D03* X-293624Y256540D03* X-246888Y188468D03* D31* X-229873Y188464D02* X-224026Y188464D01* X-244260Y193774D02* X-246860Y191174D01* X-246860Y188496D01* X-246888Y188468D01* X-235183Y193774D02* X-229873Y188464D01* X-235183Y193774D02* X-244260Y193774D01* D30* X-114808Y221234D03* X-281178Y256540D03* X-281432Y246634D03* X-293624Y246634D03* X-291846Y270510D03* D31* X-37084Y231142D02* X-33532Y227590D01* X-33532Y175073D01* X-34853Y173752D01* X-37084Y231142D02* X-37084Y234591D01* X-45164Y249584D01* D32* X-116840Y174244D02* X-130497Y187901D01* D31* X-116840Y174244D02* X-114302Y171706D01* X-100215Y165527D01* X-34853Y173752D01* D32* X-130497Y187901D02* X-130497Y202061D01* X-134176Y205740D01* D31* X-265068Y186208D02* X-265322Y186462D01* X-280128Y186462D01* X-280412Y186178D01* X-257668Y186168D02* X-257668Y186208D01* X-257668Y186168D02* X-259553Y184283D01* X-263143Y184283D02* X-265068Y186208D01* X-263143Y184283D02* X-259553Y184283D01* D30* X-289814Y184150D03* D31* X-286770Y187194D02* X-281428Y187194D01* X-286770Y187194D02* X-289814Y184150D01* X-281428Y187194D02* X-280412Y186178D01* X-235682Y253042D02* X-235682Y258042D01* X-199432Y206792D02* X-199372Y206732D01* X-199372Y201252D01* X-235734Y257990D02* X-235682Y258042D01* X-235734Y257990D02* X-242895Y257990D01* X-243911Y256974D01* D30* X-243911Y256974D03* X-246380Y217662D03* D31* X-172908Y275816D02* X-165524Y275816D01* X-172908Y275816D02* X-174432Y274292D01* X-163718Y274010D02* X-162194Y274010D01* X-163718Y274010D02* X-165524Y275816D01* D30* X-162194Y274010D03* D31* X-219492Y274352D02* X-219492Y279578D01* X-219492Y274352D02* X-219432Y274292D01* X-204372Y274352D02* X-204372Y279578D01* X-204372Y274352D02* X-204432Y274292D01* X-204372Y279578D02* X-219492Y279578D01* X-235682Y268042D02* X-242062Y268042D01* X-242062Y270935D02* X-238760Y274237D01* X-242062Y270935D02* X-242062Y268042D01* D30* X-238760Y274237D03* D31* X-241981Y271016D02* X-261880Y271016D01* X-241981Y271016D02* X-238760Y274237D01* X-211893Y201252D02* X-199372Y201252D01* X-215957Y197188D02* X-249098Y197188D01* X-248158Y271010D02* X-241987Y271010D01* X-238760Y274237D01* X-248158Y271010D02* X-261874Y271010D01* X-261880Y271016D01* X-211893Y201252D02* X-215957Y197188D01* X-147058Y237944D02* X-147058Y242944D01* D30* X-146050Y231648D03* D31* X-233419Y279578D02* X-238760Y274237D01* X-233419Y279578D02* X-219492Y279578D01* X-261882Y271018D02* X-275336Y271018D01* X-261882Y271018D02* X-261880Y271016D01* X-257668Y213491D02* X-257668Y195808D01* X-250551Y213491D02* X-246380Y217662D01* X-250551Y213491D02* X-257668Y213491D01* X-259842Y213491D01* X-249098Y197188D02* X-250478Y195808D01* X-257668Y195808D01* X-146050Y228600D02* X-146050Y231648D01* X-156436Y217960D02* X-158242Y216154D01* X-156436Y217960D02* X-156436Y221654D01* X-152820Y225270D01* X-149380Y225270D01* X-146050Y228600D01* X-146050Y231648D02* X-146050Y236936D01* X-147058Y237944D01* X-259842Y214122D02* X-259842Y213491D01* X-39443Y219452D02* X-36834Y216843D01* X-39443Y219452D02* X-42422Y219452D01* X-43178Y189303D02* X-50374Y182107D01* X-50374Y178312D01* X-41725Y198402D02* X-36834Y203293D01* X-36834Y216843D01* X-43178Y198402D02* X-43178Y189303D01* X-43178Y198402D02* X-41725Y198402D01* X-71164Y249584D02* X-72090Y249584D01* X-73730Y248436D01* X-42783Y219813D02* X-42422Y219452D01* X-42783Y219813D02* X-45724Y219813D01* X-73575Y248410D02* X-73730Y248436D01* X-73575Y248410D02* X-81022Y248410D01* D32* X-135008Y230894D02* X-140008Y230894D01* D31* X-124714Y222250D02* X-124714Y217170D01* X-121920Y214376D01* D30* X-124714Y222250D03* X-64312Y238401D03* D31* X-93216Y248410D02* X-93218Y248412D01* X-93216Y248410D02* X-81022Y248410D01* X-57079Y231168D02* X-45724Y219813D01* X-57079Y231168D02* X-58586Y231168D01* X-61694Y234276D01* X-61694Y235783D01* X-64312Y238401D01* X-66090Y238401D01* X-71164Y243475D01* X-71164Y249584D01* X-121920Y214376D02* X-125095Y217551D01* X-130937Y217551D01* X-130556Y217170D01* X-130937Y217551D02* X-135008Y221622D01* X-135008Y230894D01* X-134176Y217170D02* X-130556Y217170D01* X-75950Y262603D02* X-75950Y272533D01* X-68326Y280157D02* X-68326Y280160D01* X-71164Y259084D02* X-72431Y259084D01* X-75950Y262603D01* X-75950Y272533D02* X-68326Y280157D01* X-211160Y197675D02* X-215092Y193743D01* X-211160Y197675D02* X-177751Y197675D01* X-215092Y193743D02* X-215093Y142715D01* X-215138Y142670D01* X-172212Y192136D02* X-177751Y197675D01* X-172212Y192136D02* X-172212Y189230D01* X-167268Y159648D01* X-159928Y152308D01* X-29210Y171467D01* X-29210Y252630D02* X-45164Y268584D01* X-29210Y252630D02* X-29210Y171467D01* D30* X-206610Y136544D03* D31* X-210484Y132670D01* X-215138Y132670D01* D30* X-47733Y202438D03* D31* X-47733Y203219D01* X-42422Y208530D02* X-42422Y209800D01* X-42422Y208530D02* X-47733Y203219D01* D30* X-212344Y100838D03* D31* X-232713Y102040D02* X-235068Y104395D01* X-235068Y112926D02* X-235504Y113362D01* X-235068Y112926D02* X-235068Y104395D01* X-232713Y102040D02* X-213546Y102040D01* X-212344Y100838D01* D30* X-114180Y197986D03* D31* X-114180Y196931D01* X-93478Y176229D01* X-62957Y176229D02* X-60874Y178312D01* X-62957Y176229D02* X-93478Y176229D01* X-48258Y190928D02* X-48258Y192790D01* X-48258Y190928D02* X-60874Y178312D01* X-194492Y274352D02* X-194492Y282303D01* X-194492Y274352D02* X-194432Y274292D01* X-194492Y282303D02* X-193923Y282872D01* X-120820Y282872D02* X-119888Y281940D01* X-119888Y270114D01* X-120008Y269994D01* X-120820Y282872D02* X-193923Y282872D01* X-189492Y279255D02* X-189492Y274352D01* X-189432Y274292D01* X-189492Y279255D02* X-188923Y279824D01* X-127932Y279824D02* X-124714Y276606D01* X-124714Y270288D01* X-125008Y269994D01* X-127932Y279824D02* X-188923Y279824D01* D30* X-248147Y227009D03* X-106426Y280531D03* D31* X-111506Y280531D01* X-115008Y277029D01* X-115008Y269994D01* X-247114Y228042D02* X-248147Y227009D01* X-247114Y228042D02* X-235682Y228042D01* X-248147Y227009D02* X-251382Y223774D01* X-259842Y223774D01* D30* X-167640Y207010D03* D31* X-179169Y200998D02* X-179492Y201321D01* X-179169Y200998D02* X-171473Y200998D01* X-179432Y206792D02* X-179492Y206732D01* X-179492Y201321D01* X-167640Y204831D02* X-167640Y207010D01* X-167640Y204831D02* X-171473Y200998D01* D30* X-145908Y269860D03* D31* X-145908Y274178D02* X-143757Y276330D01* X-145908Y274178D02* X-145908Y269860D01* X-143757Y276330D02* X-134896Y276330D01* X-135008Y276218D01* X-135008Y269994D01* D30* X-238066Y202506D03* D31* X-235682Y223042D02* X-235742Y223102D01* X-240645Y223102D01* X-240968Y222779D01* X-240968Y205408D01* X-238066Y202506D01* D30* X-237998Y188468D03* D31* X-234188Y188468D02* X-229358Y183638D01* X-234188Y188468D02* X-237998Y188468D01* X-229358Y183638D02* X-220285Y183638D01* X-218692Y182045D01* X-223266Y146667D02* X-223266Y137922D01* X-218692Y151241D02* X-218692Y182045D01* X-218692Y151241D02* X-223266Y146667D01* X-223266Y137922D02* X-228518Y132670D01* X-229362Y132670D01* X-263396Y232534D02* X-263396Y238631D01* X-236190Y232534D02* X-235682Y233042D01* X-236190Y232534D02* X-263396Y232534D01* X-235816Y238042D02* X-235682Y238042D01* X-235816Y238042D02* X-235876Y237982D01* X-241915Y237982D01* X-242564Y238631D02* X-253744Y238631D01* X-242564Y238631D02* X-241915Y237982D01* X-242423Y247982D02* X-235742Y247982D01* X-235682Y248042D01* X-246286Y251845D02* X-253490Y251845D01* X-253744Y252099D01* X-246286Y251845D02* X-242423Y247982D01* X-242169Y242982D02* X-235742Y242982D01* X-235682Y243042D01* X-263396Y243971D02* X-263396Y252099D01* X-263396Y243971D02* X-243158Y243971D01* X-242169Y242982D01* D30* X-150622Y219456D03* D31* X-149098Y217932D01* X-149098Y217170D01* X-144462Y217170D01* X-142684Y217170D01* X-142684Y215392D02* X-142684Y205740D01* X-142684Y215392D02* X-144462Y217170D01* X-222756Y177542D02* X-224026Y178812D01* X-222756Y177542D02* X-222756Y152091D01* X-230162Y143469D01* X-229362Y142670D01* D32* X-235682Y263042D02* X-309778Y263042D01* X-310388Y263652D01* D31* X-222504Y123541D02* X-222504Y113362D01* X-222504Y123541D02* X-223852Y124890D01* D30* X-223852Y124890D03* X-160422Y250698D03* D31* X-159406Y250698D02* X-156766Y253338D01* X-159406Y250698D02* X-160422Y250698D01* X-147452Y253338D02* X-147058Y252944D01* X-147452Y253338D02* X-156766Y253338D01* X-168182Y263042D02* X-168182Y268042D01* D30* X-159766Y266700D03* D32* X-164524Y266700D01* X-168182Y263042D01* D30* X-231648Y125222D03* D31* X-229186Y113544D02* X-229004Y113362D01* X-229186Y113544D02* X-229186Y119535D01* X-231648Y121997D01* X-231648Y125222D01* D30* X-160620Y242824D03* D31* X-155794Y247650D01* X-147352Y247650D02* X-147058Y247944D01* X-147352Y247650D02* X-155794Y247650D01* X-107594Y252580D02* X-102275Y252580D01* X-107594Y252580D02* X-107958Y252944D01* X-102275Y252580D02* X-100860Y253995D01* X-100860Y269440D01* X-98520Y271780D02* X-91694Y271780D01* X-98520Y271780D02* X-100860Y269440D01* M02* ================================================ FILE: PCB/GerberFiles/gerber_job.gbrjob ================================================ { "Header": { "Comment": "All values are metric (mm)", "CreationDate": "2019-05-02T16:50:29Z", "GenerationSoftware": { "Application": "EAGLE", "Vendor": "Autodesk", "Version": "9.3.0" }, "Part": "Single" }, "Overall": { "BoardThickness": 1.640844, "LayerNumber": 4, "Name": { "ProjectId": "BlueCubeModR2" }, "Owner": "Nathan Reeves ", "Size": { "X": 38.608, "Y": 22.0754 } } } ================================================ FILE: PCB/GerberFiles/profile.gbr ================================================ G04 EAGLE Gerber RS-274X export* G75* %MOMM*% %FSLAX34Y34*% %LPD*% %IN*% %IPPOS*% %AMOC8* 5,1,8,0,0,1.08239X$1,22.5*% G01* %ADD10C,0.254000*% D10* X-408940Y158383D02* X-283740Y146191D01* X-283740Y174163D01* X-238010Y174163D01* X-237990Y169303D01* X-238394Y164460D01* X-239219Y159670D01* X-240458Y154971D01* X-242102Y150397D01* X-244138Y145985D01* X-246551Y141766D01* X-249322Y137774D01* X-252431Y134038D01* X-255854Y130588D01* X-259564Y127449D01* X-263534Y124645D01* X-267733Y122198D01* X-269558Y121281D01* X-269541Y68385D01* X-175274Y68385D01* X-175244Y121535D01* X-179781Y123874D01* X-184098Y126600D01* X-188160Y129692D01* X-191937Y133126D01* X-195401Y136876D01* X-198524Y140914D01* X-201284Y145209D01* X-203659Y149728D01* X-205631Y154436D01* X-207185Y159299D01* X-208309Y164278D01* X-208996Y169337D01* X-209238Y174436D01* X-209036Y179537D01* X-208994Y180013D01* X-208740Y190055D01* X-181130Y190055D01* X-171978Y139345D01* X-26050Y163131D01* X-22860Y163830D01* X-22860Y257810D01* X-53486Y289139D01* X-394740Y289139D01* X-394740Y238123D01* X-275740Y238123D01* X-275740Y208621D01* X-408940Y208621D01* X-408940Y158383D01* X-58321Y209136D02* X-58391Y207803D01* X-58530Y206475D01* X-58739Y205156D01* X-59017Y203849D01* X-59363Y202559D01* X-59775Y201289D01* X-60254Y200043D01* X-60797Y198823D01* X-61403Y197633D01* X-62071Y196476D01* X-62798Y195356D01* X-63583Y194276D01* X-64424Y193238D01* X-65317Y192246D01* X-66262Y191301D01* X-67254Y190408D01* X-68292Y189567D01* X-69372Y188782D01* X-70492Y188055D01* X-71649Y187387D01* X-72839Y186781D01* X-74059Y186238D01* X-75305Y185759D01* X-76575Y185347D01* X-77865Y185001D01* X-79172Y184723D01* X-80491Y184514D01* X-81819Y184375D01* X-83152Y184305D01* X-84488Y184305D01* X-85821Y184375D01* X-87149Y184514D01* X-88468Y184723D01* X-89775Y185001D01* X-91065Y185347D01* X-92335Y185759D01* X-93581Y186238D01* X-94801Y186781D01* X-95991Y187387D01* X-97148Y188055D01* X-98268Y188782D01* X-99348Y189567D01* X-100386Y190408D01* X-101378Y191301D01* X-102323Y192246D01* X-103216Y193238D01* X-104057Y194276D01* X-104842Y195356D01* X-105569Y196476D01* X-106237Y197633D01* X-106843Y198823D01* X-107386Y200043D01* X-107865Y201289D01* X-108277Y202559D01* X-108623Y203849D01* X-108901Y205156D01* X-109110Y206475D01* X-109249Y207803D01* X-109319Y209136D01* X-109319Y210472D01* X-109249Y211805D01* X-109110Y213133D01* X-108901Y214452D01* X-108623Y215759D01* X-108277Y217049D01* X-107865Y218319D01* X-107386Y219565D01* X-106843Y220785D01* X-106237Y221975D01* X-105569Y223132D01* X-104842Y224252D01* X-104057Y225332D01* X-103216Y226370D01* X-102323Y227362D01* X-101378Y228307D01* X-100386Y229200D01* X-99348Y230041D01* X-98268Y230826D01* X-97148Y231553D01* X-95991Y232221D01* X-94801Y232827D01* X-93581Y233370D01* X-92335Y233849D01* X-91065Y234261D01* X-89775Y234607D01* X-88468Y234885D01* X-87149Y235094D01* X-85821Y235233D01* X-84488Y235303D01* X-83152Y235303D01* X-81819Y235233D01* X-80491Y235094D01* X-79172Y234885D01* X-77865Y234607D01* X-76575Y234261D01* X-75305Y233849D01* X-74059Y233370D01* X-72839Y232827D01* X-71649Y232221D01* X-70492Y231553D01* X-69372Y230826D01* X-68292Y230041D01* X-67254Y229200D01* X-66262Y228307D01* X-65317Y227362D01* X-64424Y226370D01* X-63583Y225332D01* X-62798Y224252D01* X-62071Y223132D01* X-61403Y221975D01* X-60797Y220785D01* X-60254Y219565D01* X-59775Y218319D01* X-59363Y217049D01* X-59017Y215759D01* X-58739Y214452D01* X-58530Y213133D01* X-58391Y211805D01* X-58321Y210472D01* X-58321Y209136D01* M02* ================================================ FILE: PCB/GerberFiles/silkscreen_bottom.gbr ================================================ G04 EAGLE Gerber RS-274X export* G75* %MOMM*% %FSLAX34Y34*% %LPD*% %INSilkscreen Bottom*% %IPPOS*% %AMOC8* 5,1,8,0,0,1.08239X$1,22.5*% G01* %ADD10C,0.127000*% D10* X-180004Y115282D02* X-213704Y115282D01* X-231304Y115282D02* X-265004Y115282D01* X-180004Y115282D02* X-180004Y79282D01* X-265004Y79282D02* X-265004Y115282D01* X-239104Y79282D02* X-205904Y79282D01* M02* ================================================ FILE: PCB/GerberFiles/silkscreen_top.gbr ================================================ G04 EAGLE Gerber RS-274X export* G75* %MOMM*% %FSLAX34Y34*% %LPD*% %INSilkscreen Top*% %IPPOS*% %AMOC8* 5,1,8,0,0,1.08239X$1,22.5*% G01* %ADD10C,0.025400*% %ADD11C,0.076200*% %ADD12C,0.101600*% %ADD13C,0.050800*% %ADD14C,0.127000*% %ADD15C,0.203200*% %ADD16C,0.150000*% D10* X-83999Y220669D02* X-83551Y220462D01* X-83551Y220461D02* X-83513Y220442D01* X-83476Y220419D01* X-83442Y220393D01* X-83410Y220364D01* X-83381Y220332D01* X-83354Y220298D01* X-83331Y220261D01* X-83311Y220223D01* X-83294Y220184D01* X-83281Y220143D01* X-83272Y220100D01* X-83266Y220058D01* X-83264Y220015D01* X-83266Y219972D01* X-83271Y219929D01* X-83280Y219887D01* X-83293Y219846D01* X-83310Y219806D01* X-83329Y219768D01* X-83352Y219731D01* X-83378Y219697D01* X-83407Y219665D01* X-83439Y219636D01* X-83473Y219609D01* X-83510Y219586D01* X-83548Y219566D01* X-83587Y219549D01* X-83628Y219536D01* X-83671Y219527D01* X-83713Y219521D01* X-83756Y219519D01* X-83799Y219521D01* X-83842Y219526D01* X-83884Y219535D01* X-83925Y219548D01* X-83965Y219565D01* X-84413Y219772D01* X-83668Y221386D01* X-83219Y221179D01* X-83185Y221161D01* X-83153Y221139D01* X-83122Y221115D01* X-83095Y221088D01* X-83070Y221058D01* X-83048Y221026D01* X-83029Y220992D01* X-83014Y220956D01* X-83003Y220919D01* X-82995Y220881D01* X-82991Y220843D01* X-82990Y220804D01* X-82994Y220766D01* X-83001Y220727D01* X-83012Y220690D01* X-83026Y220654D01* X-83044Y220620D01* X-83066Y220588D01* X-83090Y220557D01* X-83117Y220530D01* X-83147Y220505D01* X-83179Y220483D01* X-83213Y220464D01* X-83249Y220449D01* X-83286Y220438D01* X-83324Y220430D01* X-83362Y220426D01* X-83401Y220425D01* X-83439Y220429D01* X-83478Y220436D01* X-83515Y220447D01* X-83551Y220461D01* X-82725Y219318D02* X-82103Y220663D01* X-82725Y219318D02* X-82737Y219287D01* X-82746Y219255D01* X-82751Y219222D01* X-82752Y219189D01* X-82750Y219156D01* X-82743Y219124D01* X-82734Y219092D01* X-82721Y219061D01* X-82704Y219033D01* X-82684Y219006D01* X-82662Y218981D01* X-82637Y218960D01* X-82609Y218941D01* X-82580Y218925D01* X-81796Y218889D02* X-81423Y219696D01* X-81796Y218889D02* X-81808Y218858D01* X-81817Y218826D01* X-81822Y218793D01* X-81823Y218760D01* X-81821Y218727D01* X-81814Y218695D01* X-81805Y218663D01* X-81792Y218632D01* X-81775Y218604D01* X-81755Y218577D01* X-81733Y218552D01* X-81708Y218531D01* X-81681Y218512D01* X-81651Y218496D01* X-81203Y218289D01* X-80706Y219365D01* X-80157Y217805D02* X-79709Y217598D01* X-80157Y217805D02* X-80186Y217821D01* X-80214Y217840D01* X-80239Y217861D01* X-80261Y217886D01* X-80281Y217913D01* X-80298Y217941D01* X-80311Y217972D01* X-80320Y218004D01* X-80327Y218036D01* X-80329Y218069D01* X-80328Y218102D01* X-80323Y218135D01* X-80314Y218167D01* X-80302Y218198D01* X-80302Y218199D02* X-80095Y218647D01* X-80077Y218681D01* X-80055Y218713D01* X-80031Y218744D01* X-80004Y218771D01* X-79974Y218796D01* X-79942Y218818D01* X-79908Y218837D01* X-79872Y218852D01* X-79835Y218863D01* X-79797Y218871D01* X-79759Y218875D01* X-79720Y218876D01* X-79682Y218872D01* X-79643Y218865D01* X-79606Y218854D01* X-79570Y218840D01* X-79536Y218822D01* X-79504Y218800D01* X-79473Y218776D01* X-79446Y218749D01* X-79421Y218719D01* X-79399Y218687D01* X-79380Y218653D01* X-79365Y218617D01* X-79354Y218580D01* X-79346Y218542D01* X-79342Y218504D01* X-79341Y218465D01* X-79345Y218427D01* X-79352Y218388D01* X-79363Y218351D01* X-79377Y218315D01* X-79377Y218316D02* X-79460Y218136D01* X-80178Y218468D01* X-78614Y217092D02* X-78255Y216927D01* X-78614Y217092D02* X-78648Y217110D01* X-78680Y217132D01* X-78711Y217156D01* X-78738Y217183D01* X-78763Y217213D01* X-78785Y217245D01* X-78804Y217279D01* X-78819Y217315D01* X-78830Y217352D01* X-78838Y217390D01* X-78842Y217428D01* X-78843Y217467D01* X-78839Y217505D01* X-78832Y217544D01* X-78821Y217581D01* X-78807Y217617D01* X-78393Y218513D01* X-78393Y218514D02* X-78375Y218548D01* X-78353Y218580D01* X-78329Y218611D01* X-78302Y218638D01* X-78272Y218663D01* X-78240Y218685D01* X-78206Y218704D01* X-78170Y218719D01* X-78133Y218730D01* X-78095Y218738D01* X-78057Y218742D01* X-78018Y218743D01* X-77980Y218739D01* X-77942Y218732D01* X-77904Y218721D01* X-77868Y218707D01* X-77868Y218706D02* X-77510Y218541D01* X-77052Y217676D02* X-77424Y216869D01* X-77436Y216838D01* X-77445Y216806D01* X-77450Y216773D01* X-77451Y216740D01* X-77449Y216707D01* X-77442Y216675D01* X-77433Y216643D01* X-77420Y216612D01* X-77403Y216584D01* X-77383Y216557D01* X-77361Y216532D01* X-77336Y216511D01* X-77309Y216492D01* X-77279Y216476D01* X-77280Y216476D02* X-76831Y216269D01* X-76334Y217345D01* X-75242Y217493D02* X-75988Y215879D01* X-75540Y215672D01* X-75509Y215660D01* X-75477Y215651D01* X-75444Y215646D01* X-75411Y215645D01* X-75378Y215647D01* X-75346Y215654D01* X-75314Y215663D01* X-75283Y215676D01* X-75255Y215693D01* X-75228Y215713D01* X-75203Y215735D01* X-75182Y215760D01* X-75163Y215788D01* X-75147Y215817D01* X-75147Y215816D02* X-74898Y216355D01* X-74886Y216386D01* X-74877Y216418D01* X-74872Y216451D01* X-74871Y216484D01* X-74873Y216517D01* X-74880Y216549D01* X-74889Y216581D01* X-74902Y216612D01* X-74919Y216640D01* X-74939Y216667D01* X-74961Y216692D01* X-74986Y216713D01* X-75014Y216732D01* X-75043Y216748D01* X-75491Y216955D01* X-74291Y215095D02* X-73843Y214888D01* X-74291Y215095D02* X-74320Y215111D01* X-74348Y215130D01* X-74373Y215151D01* X-74395Y215176D01* X-74415Y215203D01* X-74432Y215231D01* X-74445Y215262D01* X-74454Y215294D01* X-74461Y215326D01* X-74463Y215359D01* X-74462Y215392D01* X-74457Y215425D01* X-74448Y215457D01* X-74436Y215488D01* X-74229Y215937D01* X-74211Y215971D01* X-74189Y216003D01* X-74165Y216034D01* X-74138Y216061D01* X-74108Y216086D01* X-74076Y216108D01* X-74042Y216127D01* X-74006Y216142D01* X-73969Y216153D01* X-73931Y216161D01* X-73893Y216165D01* X-73854Y216166D01* X-73816Y216162D01* X-73777Y216155D01* X-73740Y216144D01* X-73704Y216130D01* X-73670Y216112D01* X-73638Y216090D01* X-73607Y216066D01* X-73580Y216039D01* X-73555Y216009D01* X-73533Y215977D01* X-73514Y215943D01* X-73499Y215907D01* X-73488Y215870D01* X-73480Y215832D01* X-73476Y215794D01* X-73475Y215755D01* X-73479Y215717D01* X-73486Y215678D01* X-73497Y215641D01* X-73511Y215605D01* X-73512Y215605D02* X-73595Y215426D01* X-74312Y215757D01* X-78177Y214801D02* X-79106Y216608D01* X-77987Y215914D01* X-77901Y217227D01* X-76972Y215420D01* X-76292Y216278D02* X-76498Y216679D01* X-76499Y216679D02* X-76516Y216717D01* X-76530Y216757D01* X-76540Y216797D01* X-76547Y216839D01* X-76549Y216880D01* X-76548Y216922D01* X-76542Y216963D01* X-76533Y217004D01* X-76521Y217044D01* X-76504Y217082D01* X-76484Y217119D01* X-76461Y217154D01* X-76435Y217186D01* X-76406Y217216D01* X-76374Y217243D01* X-76340Y217267D01* X-76304Y217288D01* X-76266Y217305D01* X-76226Y217319D01* X-76186Y217329D01* X-76144Y217336D01* X-76103Y217338D01* X-76061Y217337D01* X-76020Y217331D01* X-75979Y217322D01* X-75939Y217310D01* X-75901Y217293D01* X-75864Y217273D01* X-75829Y217250D01* X-75797Y217224D01* X-75767Y217195D01* X-75740Y217163D01* X-75716Y217129D01* X-75695Y217093D01* X-75695Y217092D02* X-75489Y216690D01* X-75488Y216691D02* X-75471Y216653D01* X-75457Y216613D01* X-75447Y216573D01* X-75440Y216531D01* X-75438Y216490D01* X-75439Y216448D01* X-75445Y216407D01* X-75454Y216366D01* X-75466Y216326D01* X-75483Y216288D01* X-75503Y216251D01* X-75526Y216216D01* X-75552Y216184D01* X-75581Y216154D01* X-75613Y216127D01* X-75647Y216103D01* X-75683Y216082D01* X-75721Y216065D01* X-75761Y216051D01* X-75801Y216041D01* X-75843Y216034D01* X-75884Y216032D01* X-75926Y216033D01* X-75967Y216039D01* X-76008Y216048D01* X-76048Y216060D01* X-76086Y216077D01* X-76123Y216097D01* X-76158Y216120D01* X-76190Y216146D01* X-76220Y216175D01* X-76247Y216207D01* X-76271Y216241D01* X-76292Y216277D01* X-73708Y217098D02* X-74636Y218905D01* X-73708Y217098D02* X-74210Y216840D01* X-74209Y216839D02* X-74241Y216825D01* X-74275Y216814D01* X-74310Y216806D01* X-74345Y216803D01* X-74381Y216802D01* X-74416Y216806D01* X-74451Y216813D01* X-74484Y216824D01* X-74517Y216838D01* X-74548Y216856D01* X-74576Y216877D01* X-74603Y216900D01* X-74627Y216927D01* X-74648Y216955D01* X-74666Y216986D01* X-74975Y217589D01* X-74976Y217589D02* X-74990Y217621D01* X-75001Y217655D01* X-75009Y217690D01* X-75012Y217725D01* X-75013Y217761D01* X-75009Y217796D01* X-75002Y217831D01* X-74991Y217864D01* X-74977Y217897D01* X-74959Y217928D01* X-74938Y217956D01* X-74915Y217983D01* X-74888Y218007D01* X-74860Y218028D01* X-74829Y218046D01* X-74829Y218045D02* X-74327Y218303D01* X-73841Y228715D02* X-74264Y230079D01* X-73361Y230060D02* X-73841Y228715D01* X-72521Y230268D02* X-71947Y230708D01* X-71990Y228676D01* X-72554Y228688D02* X-71425Y228664D01* X-70606Y228647D02* X-70604Y228760D01* X-70491Y228757D01* X-70493Y228645D01* X-70606Y228647D01* X-69653Y229643D02* X-69649Y229719D01* X-69643Y229794D01* X-69632Y229870D01* X-69619Y229944D01* X-69602Y230018D01* X-69582Y230091D01* X-69558Y230164D01* X-69531Y230235D01* X-69501Y230304D01* X-69468Y230373D01* X-69468Y230374D02* X-69453Y230411D01* X-69434Y230446D01* X-69412Y230479D01* X-69387Y230510D01* X-69359Y230538D01* X-69328Y230564D01* X-69295Y230586D01* X-69260Y230605D01* X-69224Y230621D01* X-69186Y230633D01* X-69147Y230642D01* X-69107Y230647D01* X-69067Y230648D01* X-69027Y230645D01* X-68988Y230639D01* X-68950Y230628D01* X-68912Y230615D01* X-68876Y230597D01* X-68842Y230577D01* X-68810Y230553D01* X-68781Y230526D01* X-68754Y230496D01* X-68730Y230465D01* X-68709Y230430D01* X-68692Y230395D01* X-68678Y230357D01* X-68648Y230287D01* X-68621Y230216D01* X-68597Y230144D01* X-68577Y230071D01* X-68559Y229997D01* X-68546Y229922D01* X-68535Y229847D01* X-68528Y229771D01* X-68525Y229695D01* X-68524Y229619D01* X-69653Y229643D02* X-69653Y229567D01* X-69649Y229491D01* X-69642Y229416D01* X-69631Y229341D01* X-69618Y229266D01* X-69600Y229192D01* X-69580Y229119D01* X-69556Y229047D01* X-69529Y228976D01* X-69499Y228906D01* X-69485Y228868D01* X-69468Y228833D01* X-69447Y228799D01* X-69423Y228767D01* X-69396Y228737D01* X-69367Y228710D01* X-69335Y228686D01* X-69301Y228666D01* X-69265Y228648D01* X-69227Y228635D01* X-69189Y228624D01* X-69149Y228618D01* X-69110Y228615D01* X-68709Y228890D02* X-68676Y228958D01* X-68646Y229028D01* X-68619Y229099D01* X-68595Y229171D01* X-68575Y229244D01* X-68558Y229318D01* X-68545Y229393D01* X-68534Y229468D01* X-68528Y229544D01* X-68524Y229620D01* X-68709Y228889D02* X-68724Y228852D01* X-68743Y228817D01* X-68765Y228784D01* X-68790Y228753D01* X-68818Y228725D01* X-68849Y228699D01* X-68882Y228677D01* X-68917Y228658D01* X-68953Y228642D01* X-68991Y228630D01* X-69030Y228621D01* X-69070Y228616D01* X-69110Y228615D01* X-69552Y229077D02* X-68625Y230186D01* D11* X-371757Y195707D02* X-373394Y195707D01* X-373472Y195709D01* X-373550Y195714D01* X-373627Y195724D01* X-373704Y195737D01* X-373780Y195753D01* X-373855Y195773D01* X-373929Y195797D01* X-374002Y195824D01* X-374074Y195855D01* X-374144Y195889D01* X-374213Y195926D01* X-374279Y195967D01* X-374344Y196011D01* X-374406Y196057D01* X-374466Y196107D01* X-374524Y196159D01* X-374579Y196214D01* X-374631Y196272D01* X-374681Y196332D01* X-374727Y196394D01* X-374771Y196459D01* X-374812Y196526D01* X-374849Y196594D01* X-374883Y196664D01* X-374914Y196736D01* X-374941Y196809D01* X-374965Y196883D01* X-374985Y196958D01* X-375001Y197034D01* X-375014Y197111D01* X-375024Y197188D01* X-375029Y197266D01* X-375031Y197344D01* X-375031Y201436D01* X-375029Y201514D01* X-375024Y201592D01* X-375014Y201669D01* X-375001Y201746D01* X-374985Y201822D01* X-374965Y201897D01* X-374941Y201971D01* X-374914Y202044D01* X-374883Y202116D01* X-374849Y202186D01* X-374812Y202255D01* X-374771Y202321D01* X-374727Y202386D01* X-374681Y202448D01* X-374631Y202508D01* X-374579Y202566D01* X-374524Y202621D01* X-374466Y202673D01* X-374406Y202723D01* X-374344Y202769D01* X-374279Y202813D01* X-374213Y202854D01* X-374144Y202891D01* X-374074Y202925D01* X-374002Y202956D01* X-373929Y202983D01* X-373855Y203007D01* X-373780Y203027D01* X-373704Y203043D01* X-373627Y203056D01* X-373550Y203066D01* X-373472Y203071D01* X-373394Y203073D01* X-371757Y203073D01* X-368912Y201027D02* X-368912Y197753D01* X-368912Y201027D02* X-368910Y201116D01* X-368904Y201205D01* X-368894Y201294D01* X-368881Y201382D01* X-368864Y201470D01* X-368842Y201557D01* X-368817Y201642D01* X-368789Y201727D01* X-368756Y201810D01* X-368720Y201892D01* X-368681Y201972D01* X-368638Y202050D01* X-368592Y202126D01* X-368542Y202201D01* X-368489Y202273D01* X-368433Y202342D01* X-368374Y202409D01* X-368313Y202474D01* X-368248Y202535D01* X-368181Y202594D01* X-368112Y202650D01* X-368040Y202703D01* X-367965Y202753D01* X-367889Y202799D01* X-367811Y202842D01* X-367731Y202881D01* X-367649Y202917D01* X-367566Y202950D01* X-367481Y202978D01* X-367396Y203003D01* X-367309Y203025D01* X-367221Y203042D01* X-367133Y203055D01* X-367044Y203065D01* X-366955Y203071D01* X-366866Y203073D01* X-366777Y203071D01* X-366688Y203065D01* X-366599Y203055D01* X-366511Y203042D01* X-366423Y203025D01* X-366336Y203003D01* X-366251Y202978D01* X-366166Y202950D01* X-366083Y202917D01* X-366001Y202881D01* X-365921Y202842D01* X-365843Y202799D01* X-365767Y202753D01* X-365692Y202703D01* X-365620Y202650D01* X-365551Y202594D01* X-365484Y202535D01* X-365419Y202474D01* X-365358Y202409D01* X-365299Y202342D01* X-365243Y202273D01* X-365190Y202201D01* X-365140Y202126D01* X-365094Y202050D01* X-365051Y201972D01* X-365012Y201892D01* X-364976Y201810D01* X-364943Y201727D01* X-364915Y201642D01* X-364890Y201557D01* X-364868Y201470D01* X-364851Y201382D01* X-364838Y201294D01* X-364828Y201205D01* X-364822Y201116D01* X-364820Y201027D01* X-364820Y197753D01* X-364822Y197664D01* X-364828Y197575D01* X-364838Y197486D01* X-364851Y197398D01* X-364868Y197310D01* X-364890Y197223D01* X-364915Y197138D01* X-364943Y197053D01* X-364976Y196970D01* X-365012Y196888D01* X-365051Y196808D01* X-365094Y196730D01* X-365140Y196654D01* X-365190Y196579D01* X-365243Y196507D01* X-365299Y196438D01* X-365358Y196371D01* X-365419Y196306D01* X-365484Y196245D01* X-365551Y196186D01* X-365620Y196130D01* X-365692Y196077D01* X-365767Y196027D01* X-365843Y195981D01* X-365921Y195938D01* X-366001Y195899D01* X-366083Y195863D01* X-366166Y195830D01* X-366251Y195802D01* X-366336Y195777D01* X-366423Y195755D01* X-366511Y195738D01* X-366599Y195725D01* X-366688Y195715D01* X-366777Y195709D01* X-366866Y195707D01* X-366955Y195709D01* X-367044Y195715D01* X-367133Y195725D01* X-367221Y195738D01* X-367309Y195755D01* X-367396Y195777D01* X-367481Y195802D01* X-367566Y195830D01* X-367649Y195863D01* X-367731Y195899D01* X-367811Y195938D01* X-367889Y195981D01* X-367965Y196027D01* X-368040Y196077D01* X-368112Y196130D01* X-368181Y196186D01* X-368248Y196245D01* X-368313Y196306D01* X-368374Y196371D01* X-368433Y196438D01* X-368489Y196507D01* X-368542Y196579D01* X-368592Y196654D01* X-368638Y196730D01* X-368681Y196808D01* X-368720Y196888D01* X-368756Y196970D01* X-368789Y197053D01* X-368817Y197138D01* X-368842Y197223D01* X-368864Y197310D01* X-368881Y197398D01* X-368894Y197486D01* X-368904Y197575D01* X-368910Y197664D01* X-368912Y197753D01* X-361353Y195707D02* X-361353Y203073D01* X-357261Y195707D01* X-357261Y203073D01* X-352235Y203073D02* X-352235Y195707D01* X-350189Y203073D02* X-354282Y203073D01* X-347159Y203073D02* X-347159Y195707D01* X-347159Y203073D02* X-345113Y203073D01* X-345024Y203071D01* X-344935Y203065D01* X-344846Y203055D01* X-344758Y203042D01* X-344670Y203025D01* X-344583Y203003D01* X-344498Y202978D01* X-344413Y202950D01* X-344330Y202917D01* X-344248Y202881D01* X-344168Y202842D01* X-344090Y202799D01* X-344014Y202753D01* X-343939Y202703D01* X-343867Y202650D01* X-343798Y202594D01* X-343731Y202535D01* X-343666Y202474D01* X-343605Y202409D01* X-343546Y202342D01* X-343490Y202273D01* X-343437Y202201D01* X-343387Y202126D01* X-343341Y202050D01* X-343298Y201972D01* X-343259Y201892D01* X-343223Y201810D01* X-343190Y201727D01* X-343162Y201642D01* X-343137Y201557D01* X-343115Y201470D01* X-343098Y201382D01* X-343085Y201294D01* X-343075Y201205D01* X-343069Y201116D01* X-343067Y201027D01* X-343069Y200938D01* X-343075Y200849D01* X-343085Y200760D01* X-343098Y200672D01* X-343115Y200584D01* X-343137Y200497D01* X-343162Y200412D01* X-343190Y200327D01* X-343223Y200244D01* X-343259Y200162D01* X-343298Y200082D01* X-343341Y200004D01* X-343387Y199928D01* X-343437Y199853D01* X-343490Y199781D01* X-343546Y199712D01* X-343605Y199645D01* X-343666Y199580D01* X-343731Y199519D01* X-343798Y199460D01* X-343867Y199404D01* X-343939Y199351D01* X-344014Y199301D01* X-344090Y199255D01* X-344168Y199212D01* X-344248Y199173D01* X-344330Y199137D01* X-344413Y199104D01* X-344498Y199076D01* X-344583Y199051D01* X-344670Y199029D01* X-344758Y199012D01* X-344846Y198999D01* X-344935Y198989D01* X-345024Y198983D01* X-345113Y198981D01* X-347159Y198981D01* X-344704Y198981D02* X-343067Y195707D01* X-339895Y197753D02* X-339895Y201027D01* X-339893Y201116D01* X-339887Y201205D01* X-339877Y201294D01* X-339864Y201382D01* X-339847Y201470D01* X-339825Y201557D01* X-339800Y201642D01* X-339772Y201727D01* X-339739Y201810D01* X-339703Y201892D01* X-339664Y201972D01* X-339621Y202050D01* X-339575Y202126D01* X-339525Y202201D01* X-339472Y202273D01* X-339416Y202342D01* X-339357Y202409D01* X-339296Y202474D01* X-339231Y202535D01* X-339164Y202594D01* X-339095Y202650D01* X-339023Y202703D01* X-338948Y202753D01* X-338872Y202799D01* X-338794Y202842D01* X-338714Y202881D01* X-338632Y202917D01* X-338549Y202950D01* X-338464Y202978D01* X-338379Y203003D01* X-338292Y203025D01* X-338204Y203042D01* X-338116Y203055D01* X-338027Y203065D01* X-337938Y203071D01* X-337849Y203073D01* X-337760Y203071D01* X-337671Y203065D01* X-337582Y203055D01* X-337494Y203042D01* X-337406Y203025D01* X-337319Y203003D01* X-337234Y202978D01* X-337149Y202950D01* X-337066Y202917D01* X-336984Y202881D01* X-336904Y202842D01* X-336826Y202799D01* X-336750Y202753D01* X-336675Y202703D01* X-336603Y202650D01* X-336534Y202594D01* X-336467Y202535D01* X-336402Y202474D01* X-336341Y202409D01* X-336282Y202342D01* X-336226Y202273D01* X-336173Y202201D01* X-336123Y202126D01* X-336077Y202050D01* X-336034Y201972D01* X-335995Y201892D01* X-335959Y201810D01* X-335926Y201727D01* X-335898Y201642D01* X-335873Y201557D01* X-335851Y201470D01* X-335834Y201382D01* X-335821Y201294D01* X-335811Y201205D01* X-335805Y201116D01* X-335803Y201027D01* X-335803Y197753D01* X-335805Y197664D01* X-335811Y197575D01* X-335821Y197486D01* X-335834Y197398D01* X-335851Y197310D01* X-335873Y197223D01* X-335898Y197138D01* X-335926Y197053D01* X-335959Y196970D01* X-335995Y196888D01* X-336034Y196808D01* X-336077Y196730D01* X-336123Y196654D01* X-336173Y196579D01* X-336226Y196507D01* X-336282Y196438D01* X-336341Y196371D01* X-336402Y196306D01* X-336467Y196245D01* X-336534Y196186D01* X-336603Y196130D01* X-336675Y196077D01* X-336750Y196027D01* X-336826Y195981D01* X-336904Y195938D01* X-336984Y195899D01* X-337066Y195863D01* X-337149Y195830D01* X-337234Y195802D01* X-337319Y195777D01* X-337406Y195755D01* X-337494Y195738D01* X-337582Y195725D01* X-337671Y195715D01* X-337760Y195709D01* X-337849Y195707D01* X-337938Y195709D01* X-338027Y195715D01* X-338116Y195725D01* X-338204Y195738D01* X-338292Y195755D01* X-338379Y195777D01* X-338464Y195802D01* X-338549Y195830D01* X-338632Y195863D01* X-338714Y195899D01* X-338794Y195938D01* X-338872Y195981D01* X-338948Y196027D01* X-339023Y196077D01* X-339095Y196130D01* X-339164Y196186D01* X-339231Y196245D01* X-339296Y196306D01* X-339357Y196371D01* X-339416Y196438D01* X-339472Y196507D01* X-339525Y196579D01* X-339575Y196654D01* X-339621Y196730D01* X-339664Y196808D01* X-339703Y196888D01* X-339739Y196970D01* X-339772Y197053D01* X-339800Y197138D01* X-339825Y197223D01* X-339847Y197310D01* X-339864Y197398D01* X-339877Y197486D01* X-339887Y197575D01* X-339893Y197664D01* X-339895Y197753D01* X-332320Y195707D02* X-332320Y203073D01* X-332320Y195707D02* X-329047Y195707D01* X-325980Y195707D02* X-325980Y203073D01* X-325980Y195707D02* X-322707Y195707D01* X-319641Y195707D02* X-316367Y195707D01* X-319641Y195707D02* X-319641Y203073D01* X-316367Y203073D01* X-317185Y199799D02* X-319641Y199799D01* X-313265Y203073D02* X-313265Y195707D01* X-313265Y203073D02* X-311219Y203073D01* X-311130Y203071D01* X-311041Y203065D01* X-310952Y203055D01* X-310864Y203042D01* X-310776Y203025D01* X-310689Y203003D01* X-310604Y202978D01* X-310519Y202950D01* X-310436Y202917D01* X-310354Y202881D01* X-310274Y202842D01* X-310196Y202799D01* X-310120Y202753D01* X-310045Y202703D01* X-309973Y202650D01* X-309904Y202594D01* X-309837Y202535D01* X-309772Y202474D01* X-309711Y202409D01* X-309652Y202342D01* X-309596Y202273D01* X-309543Y202201D01* X-309493Y202126D01* X-309447Y202050D01* X-309404Y201972D01* X-309365Y201892D01* X-309329Y201810D01* X-309296Y201727D01* X-309268Y201642D01* X-309243Y201557D01* X-309221Y201470D01* X-309204Y201382D01* X-309191Y201294D01* X-309181Y201205D01* X-309175Y201116D01* X-309173Y201027D01* X-309175Y200938D01* X-309181Y200849D01* X-309191Y200760D01* X-309204Y200672D01* X-309221Y200584D01* X-309243Y200497D01* X-309268Y200412D01* X-309296Y200327D01* X-309329Y200244D01* X-309365Y200162D01* X-309404Y200082D01* X-309447Y200004D01* X-309493Y199928D01* X-309543Y199853D01* X-309596Y199781D01* X-309652Y199712D01* X-309711Y199645D01* X-309772Y199580D01* X-309837Y199519D01* X-309904Y199460D01* X-309973Y199404D01* X-310045Y199351D01* X-310120Y199301D01* X-310196Y199255D01* X-310274Y199212D01* X-310354Y199173D01* X-310436Y199137D01* X-310519Y199104D01* X-310604Y199076D01* X-310689Y199051D01* X-310776Y199029D01* X-310864Y199012D01* X-310952Y198999D01* X-311041Y198989D01* X-311130Y198983D01* X-311219Y198981D01* X-313265Y198981D01* X-310810Y198981D02* X-309173Y195707D01* D12* X-168402Y186238D02* X-159597Y186238D01* X-136144Y188778D02* X-127339Y188778D01* X-131741Y184376D02* X-131741Y193181D01* D13* X-168656Y191770D02* X-169926Y191770D01* X-168656Y191770D02* X-168586Y191772D01* X-168516Y191778D01* X-168447Y191787D01* X-168378Y191801D01* X-168310Y191818D01* X-168244Y191839D01* X-168178Y191863D01* X-168114Y191891D01* X-168052Y191923D01* X-167991Y191958D01* X-167932Y191996D01* X-167876Y192038D01* X-167822Y192082D01* X-167770Y192130D01* X-167722Y192180D01* X-167676Y192233D01* X-167633Y192288D01* X-167593Y192345D01* X-167556Y192405D01* X-167523Y192467D01* X-167493Y192530D01* X-167467Y192595D01* X-167444Y192661D01* X-167425Y192728D01* X-167410Y192797D01* X-167398Y192866D01* X-167390Y192935D01* X-167386Y193005D01* X-167386Y193075D01* X-167390Y193145D01* X-167398Y193214D01* X-167410Y193283D01* X-167425Y193352D01* X-167444Y193419D01* X-167467Y193485D01* X-167493Y193550D01* X-167523Y193613D01* X-167556Y193675D01* X-167593Y193735D01* X-167633Y193792D01* X-167676Y193847D01* X-167722Y193900D01* X-167770Y193950D01* X-167822Y193998D01* X-167876Y194042D01* X-167932Y194084D01* X-167991Y194122D01* X-168052Y194157D01* X-168114Y194189D01* X-168178Y194217D01* X-168244Y194241D01* X-168310Y194262D01* X-168378Y194279D01* X-168447Y194293D01* X-168516Y194302D01* X-168586Y194308D01* X-168656Y194310D01* X-168402Y196342D02* X-169926Y196342D01* X-168402Y196342D02* X-168339Y196340D01* X-168277Y196334D01* X-168215Y196325D01* X-168154Y196311D01* X-168094Y196294D01* X-168035Y196273D01* X-167977Y196249D01* X-167921Y196221D01* X-167867Y196190D01* X-167815Y196155D01* X-167765Y196118D01* X-167718Y196077D01* X-167673Y196033D01* X-167630Y195987D01* X-167591Y195938D01* X-167555Y195887D01* X-167522Y195834D01* X-167493Y195779D01* X-167466Y195722D01* X-167444Y195664D01* X-167425Y195604D01* X-167410Y195543D01* X-167398Y195482D01* X-167390Y195420D01* X-167386Y195357D01* X-167386Y195295D01* X-167390Y195232D01* X-167398Y195170D01* X-167410Y195109D01* X-167425Y195048D01* X-167444Y194988D01* X-167466Y194930D01* X-167493Y194873D01* X-167522Y194818D01* X-167555Y194765D01* X-167591Y194714D01* X-167630Y194665D01* X-167673Y194619D01* X-167718Y194575D01* X-167765Y194534D01* X-167815Y194497D01* X-167867Y194462D01* X-167921Y194431D01* X-167977Y194403D01* X-168035Y194379D01* X-168094Y194358D01* X-168154Y194341D01* X-168215Y194327D01* X-168277Y194318D01* X-168339Y194312D01* X-168402Y194310D01* X-169418Y194310D01* X-165583Y192024D02* X-165583Y191770D01* X-165583Y192024D02* X-165329Y192024D01* X-165329Y191770D01* X-165583Y191770D01* X-163525Y195834D02* X-163525Y196342D01* X-160985Y196342D01* X-162255Y191770D01* X-157683Y191770D02* X-159207Y196342D01* X-156159Y196342D02* X-157683Y191770D01* X-151780Y191770D02* X-151780Y196342D01* X-151780Y191770D02* X-149748Y191770D01* X-148082Y191770D02* X-148082Y194818D01* X-148209Y196088D02* X-148209Y196342D01* X-147955Y196342D01* X-147955Y196088D01* X-148209Y196088D01* X-145923Y196342D02* X-145923Y191770D01* X-145923Y196342D02* X-144653Y196342D01* X-144583Y196340D01* X-144513Y196334D01* X-144444Y196325D01* X-144375Y196311D01* X-144307Y196294D01* X-144241Y196273D01* X-144175Y196249D01* X-144111Y196221D01* X-144049Y196189D01* X-143988Y196154D01* X-143929Y196116D01* X-143873Y196074D01* X-143819Y196030D01* X-143767Y195982D01* X-143719Y195932D01* X-143673Y195879D01* X-143630Y195824D01* X-143590Y195767D01* X-143553Y195707D01* X-143520Y195645D01* X-143490Y195582D01* X-143464Y195517D01* X-143441Y195451D01* X-143422Y195384D01* X-143407Y195315D01* X-143395Y195246D01* X-143387Y195177D01* X-143383Y195107D01* X-143383Y195037D01* X-143387Y194967D01* X-143395Y194898D01* X-143407Y194829D01* X-143422Y194760D01* X-143441Y194693D01* X-143464Y194627D01* X-143490Y194562D01* X-143520Y194499D01* X-143553Y194437D01* X-143590Y194377D01* X-143630Y194320D01* X-143673Y194265D01* X-143719Y194212D01* X-143767Y194162D01* X-143819Y194114D01* X-143873Y194070D01* X-143929Y194028D01* X-143988Y193990D01* X-144049Y193955D01* X-144111Y193923D01* X-144175Y193895D01* X-144241Y193871D01* X-144307Y193850D01* X-144375Y193833D01* X-144444Y193819D01* X-144513Y193810D01* X-144583Y193804D01* X-144653Y193802D01* X-145923Y193802D01* X-141631Y193802D02* X-141631Y192786D01* X-141631Y193802D02* X-141629Y193865D01* X-141623Y193927D01* X-141614Y193989D01* X-141600Y194050D01* X-141583Y194110D01* X-141562Y194169D01* X-141538Y194227D01* X-141510Y194283D01* X-141479Y194337D01* X-141444Y194389D01* X-141407Y194439D01* X-141366Y194486D01* X-141322Y194531D01* X-141276Y194574D01* X-141227Y194613D01* X-141176Y194649D01* X-141123Y194682D01* X-141068Y194711D01* X-141011Y194738D01* X-140953Y194760D01* X-140893Y194779D01* X-140832Y194794D01* X-140771Y194806D01* X-140709Y194814D01* X-140646Y194818D01* X-140584Y194818D01* X-140521Y194814D01* X-140459Y194806D01* X-140398Y194794D01* X-140337Y194779D01* X-140277Y194760D01* X-140219Y194738D01* X-140162Y194711D01* X-140107Y194682D01* X-140054Y194649D01* X-140003Y194613D01* X-139954Y194574D01* X-139908Y194531D01* X-139864Y194486D01* X-139823Y194439D01* X-139786Y194389D01* X-139751Y194337D01* X-139720Y194283D01* X-139692Y194227D01* X-139668Y194169D01* X-139647Y194110D01* X-139630Y194050D01* X-139616Y193989D01* X-139607Y193927D01* X-139601Y193865D01* X-139599Y193802D01* X-139599Y192786D01* X-139601Y192723D01* X-139607Y192661D01* X-139616Y192599D01* X-139630Y192538D01* X-139647Y192478D01* X-139668Y192419D01* X-139692Y192361D01* X-139720Y192305D01* X-139751Y192251D01* X-139786Y192199D01* X-139823Y192149D01* X-139864Y192102D01* X-139908Y192057D01* X-139954Y192014D01* X-140003Y191975D01* X-140054Y191939D01* X-140107Y191906D01* X-140162Y191877D01* X-140219Y191850D01* X-140277Y191828D01* X-140337Y191809D01* X-140398Y191794D01* X-140459Y191782D01* X-140521Y191774D01* X-140584Y191770D01* X-140646Y191770D01* X-140709Y191774D01* X-140771Y191782D01* X-140832Y191794D01* X-140893Y191809D01* X-140953Y191828D01* X-141011Y191850D01* X-141068Y191877D01* X-141123Y191906D01* X-141176Y191939D01* X-141227Y191975D01* X-141276Y192014D01* X-141322Y192057D01* X-141366Y192102D01* X-141407Y192149D01* X-141444Y192199D01* X-141479Y192251D01* X-141510Y192305D01* X-141538Y192361D01* X-141562Y192419D01* X-141583Y192478D01* X-141600Y192538D01* X-141614Y192599D01* X-141623Y192661D01* X-141629Y192723D01* X-141631Y192786D01* D11* X-117399Y209804D02* X-117389Y210628D01* X-117359Y211452D01* X-117308Y212274D01* X-117237Y213095D01* X-117146Y213914D01* X-117036Y214731D01* X-116905Y215545D01* X-116754Y216355D01* X-116583Y217161D01* X-116393Y217963D01* X-116183Y218760D01* X-115953Y219551D01* X-115704Y220337D01* X-115436Y221116D01* X-115149Y221889D01* X-114843Y222654D01* X-114518Y223412D01* X-114175Y224161D01* X-113814Y224901D01* X-113434Y225633D01* X-113037Y226355D01* X-112622Y227067D01* X-112189Y227769D01* X-111740Y228459D01* X-111274Y229139D01* X-110791Y229807D01* X-110292Y230463D01* X-109777Y231106D01* X-109246Y231737D01* X-108700Y232354D01* X-108139Y232958D01* X-107564Y233548D01* X-106974Y234123D01* X-106370Y234684D01* X-105753Y235230D01* X-105122Y235761D01* X-104479Y236276D01* X-103823Y236775D01* X-103155Y237258D01* X-102475Y237724D01* X-101785Y238173D01* X-101083Y238606D01* X-100371Y239021D01* X-99649Y239418D01* X-98917Y239798D01* X-98177Y240159D01* X-97428Y240502D01* X-96670Y240827D01* X-95905Y241133D01* X-95132Y241420D01* X-94353Y241688D01* X-93567Y241937D01* X-92776Y242167D01* X-91979Y242377D01* X-91177Y242567D01* X-90371Y242738D01* X-89561Y242889D01* X-88747Y243020D01* X-87930Y243130D01* X-87111Y243221D01* X-86290Y243292D01* X-85468Y243343D01* X-84644Y243373D01* X-83820Y243383D01* X-82996Y243373D01* X-82172Y243343D01* X-81350Y243292D01* X-80529Y243221D01* X-79710Y243130D01* X-78893Y243020D01* X-78079Y242889D01* X-77269Y242738D01* X-76463Y242567D01* X-75661Y242377D01* X-74864Y242167D01* X-74073Y241937D01* X-73287Y241688D01* X-72508Y241420D01* X-71735Y241133D01* X-70970Y240827D01* X-70212Y240502D01* X-69463Y240159D01* X-68723Y239798D01* X-67991Y239418D01* X-67269Y239021D01* X-66557Y238606D01* X-65855Y238173D01* X-65165Y237724D01* X-64485Y237258D01* X-63817Y236775D01* X-63161Y236276D01* X-62518Y235761D01* X-61887Y235230D01* X-61270Y234684D01* X-60666Y234123D01* X-60076Y233548D01* X-59501Y232958D01* X-58940Y232354D01* X-58394Y231737D01* X-57863Y231106D01* X-57348Y230463D01* X-56849Y229807D01* X-56366Y229139D01* X-55900Y228459D01* X-55451Y227769D01* X-55018Y227067D01* X-54603Y226355D01* X-54206Y225633D01* X-53826Y224901D01* X-53465Y224161D01* X-53122Y223412D01* X-52797Y222654D01* X-52491Y221889D01* X-52204Y221116D01* X-51936Y220337D01* X-51687Y219551D01* X-51457Y218760D01* X-51247Y217963D01* X-51057Y217161D01* X-50886Y216355D01* X-50735Y215545D01* X-50604Y214731D01* X-50494Y213914D01* X-50403Y213095D01* X-50332Y212274D01* X-50281Y211452D01* X-50251Y210628D01* X-50241Y209804D01* X-50251Y208980D01* X-50281Y208156D01* X-50332Y207334D01* X-50403Y206513D01* X-50494Y205694D01* X-50604Y204877D01* X-50735Y204063D01* X-50886Y203253D01* X-51057Y202447D01* X-51247Y201645D01* X-51457Y200848D01* X-51687Y200057D01* X-51936Y199271D01* X-52204Y198492D01* X-52491Y197719D01* X-52797Y196954D01* X-53122Y196196D01* X-53465Y195447D01* X-53826Y194707D01* X-54206Y193975D01* X-54603Y193253D01* X-55018Y192541D01* X-55451Y191839D01* X-55900Y191149D01* X-56366Y190469D01* X-56849Y189801D01* X-57348Y189145D01* X-57863Y188502D01* X-58394Y187871D01* X-58940Y187254D01* X-59501Y186650D01* X-60076Y186060D01* X-60666Y185485D01* X-61270Y184924D01* X-61887Y184378D01* X-62518Y183847D01* X-63161Y183332D01* X-63817Y182833D01* X-64485Y182350D01* X-65165Y181884D01* X-65855Y181435D01* X-66557Y181002D01* X-67269Y180587D01* X-67991Y180190D01* X-68723Y179810D01* X-69463Y179449D01* X-70212Y179106D01* X-70970Y178781D01* X-71735Y178475D01* X-72508Y178188D01* X-73287Y177920D01* X-74073Y177671D01* X-74864Y177441D01* X-75661Y177231D01* X-76463Y177041D01* X-77269Y176870D01* X-78079Y176719D01* X-78893Y176588D01* X-79710Y176478D01* X-80529Y176387D01* X-81350Y176316D01* X-82172Y176265D01* X-82996Y176235D01* X-83820Y176225D01* X-84644Y176235D01* X-85468Y176265D01* X-86290Y176316D01* X-87111Y176387D01* X-87930Y176478D01* X-88747Y176588D01* X-89561Y176719D01* X-90371Y176870D01* X-91177Y177041D01* X-91979Y177231D01* X-92776Y177441D01* X-93567Y177671D01* X-94353Y177920D01* X-95132Y178188D01* X-95905Y178475D01* X-96670Y178781D01* X-97428Y179106D01* X-98177Y179449D01* X-98917Y179810D01* X-99649Y180190D01* X-100371Y180587D01* X-101083Y181002D01* X-101785Y181435D01* X-102475Y181884D01* X-103155Y182350D01* X-103823Y182833D01* X-104479Y183332D01* X-105122Y183847D01* X-105753Y184378D01* X-106370Y184924D01* X-106974Y185485D01* X-107564Y186060D01* X-108139Y186650D01* X-108700Y187254D01* X-109246Y187871D01* X-109777Y188502D01* X-110292Y189145D01* X-110791Y189801D01* X-111274Y190469D01* X-111740Y191149D01* X-112189Y191839D01* X-112622Y192541D01* X-113037Y193253D01* X-113434Y193975D01* X-113814Y194707D01* X-114175Y195447D01* X-114518Y196196D01* X-114843Y196954D01* X-115149Y197719D01* X-115436Y198492D01* X-115704Y199271D01* X-115953Y200057D01* X-116183Y200848D01* X-116393Y201645D01* X-116583Y202447D01* X-116754Y203253D01* X-116905Y204063D01* X-117036Y204877D01* X-117146Y205694D01* X-117237Y206513D01* X-117308Y207334D01* X-117359Y208156D01* X-117389Y208980D01* X-117399Y209804D01* D14* X-211638Y136770D02* X-218638Y136770D01* X-215138Y136870D02* X-215138Y138470D01* X-234932Y272542D02* X-234930Y272605D01* X-234924Y272667D01* X-234914Y272729D01* X-234901Y272791D01* X-234883Y272851D01* X-234862Y272910D01* X-234837Y272968D01* X-234808Y273024D01* X-234776Y273078D01* X-234741Y273130D01* X-234703Y273179D01* X-234661Y273227D01* X-234617Y273271D01* X-234569Y273313D01* X-234520Y273351D01* X-234468Y273386D01* X-234414Y273418D01* X-234358Y273447D01* X-234300Y273472D01* X-234241Y273493D01* X-234181Y273511D01* X-234119Y273524D01* X-234057Y273534D01* X-233995Y273540D01* X-233932Y273542D01* X-233869Y273540D01* X-233807Y273534D01* X-233745Y273524D01* X-233683Y273511D01* X-233623Y273493D01* X-233564Y273472D01* X-233506Y273447D01* X-233450Y273418D01* X-233396Y273386D01* X-233344Y273351D01* X-233295Y273313D01* X-233247Y273271D01* X-233203Y273227D01* X-233161Y273179D01* X-233123Y273130D01* X-233088Y273078D01* X-233056Y273024D01* X-233027Y272968D01* X-233002Y272910D01* X-232981Y272851D01* X-232963Y272791D01* X-232950Y272729D01* X-232940Y272667D01* X-232934Y272605D01* X-232932Y272542D01* X-232934Y272479D01* X-232940Y272417D01* X-232950Y272355D01* X-232963Y272293D01* X-232981Y272233D01* X-233002Y272174D01* X-233027Y272116D01* X-233056Y272060D01* X-233088Y272006D01* X-233123Y271954D01* X-233161Y271905D01* X-233203Y271857D01* X-233247Y271813D01* X-233295Y271771D01* X-233344Y271733D01* X-233396Y271698D01* X-233450Y271666D01* X-233506Y271637D01* X-233564Y271612D01* X-233623Y271591D01* X-233683Y271573D01* X-233745Y271560D01* X-233807Y271550D01* X-233869Y271544D01* X-233932Y271542D01* X-233995Y271544D01* X-234057Y271550D01* X-234119Y271560D01* X-234181Y271573D01* X-234241Y271591D01* X-234300Y271612D01* X-234358Y271637D01* X-234414Y271666D01* X-234468Y271698D01* X-234520Y271733D01* X-234569Y271771D01* X-234617Y271813D01* X-234661Y271857D01* X-234703Y271905D01* X-234741Y271954D01* X-234776Y272006D01* X-234808Y272060D01* X-234837Y272116D01* X-234862Y272174D01* X-234883Y272233D01* X-234901Y272293D01* X-234914Y272355D01* X-234924Y272417D01* X-234930Y272479D01* X-234932Y272542D01* X-236932Y275542D02* X-166932Y275542D01* X-166932Y205542D01* X-236932Y205542D01* X-236932Y274542D01* X-73664Y243584D02* X-49164Y243584D01* X-73664Y243584D02* X-73664Y274584D01* X-42664Y274584D01* X-42664Y250084D01* X-49164Y243584D01* X-254868Y183408D02* X-267968Y183408D01* X-267968Y198708D01* X-254868Y198708D01* X-254868Y183408D01* X-254868Y199208D02* X-254866Y199248D01* X-254860Y199287D01* X-254850Y199326D01* X-254837Y199363D01* X-254819Y199399D01* X-254798Y199433D01* X-254774Y199465D01* X-254747Y199494D01* X-254717Y199521D01* X-254685Y199544D01* X-254650Y199564D01* X-254614Y199580D01* X-254576Y199593D01* X-254537Y199602D01* X-254498Y199607D01* X-254458Y199608D01* X-254418Y199605D01* X-254379Y199598D01* X-254341Y199587D01* X-254303Y199573D01* X-254268Y199554D01* X-254235Y199533D01* X-254203Y199508D01* X-254175Y199480D01* X-254149Y199450D01* X-254127Y199417D01* X-254108Y199382D01* X-254092Y199345D01* X-254080Y199307D01* X-254072Y199268D01* X-254068Y199228D01* X-254068Y199188D01* X-254072Y199148D01* X-254080Y199109D01* X-254092Y199071D01* X-254108Y199034D01* X-254127Y198999D01* X-254149Y198966D01* X-254175Y198936D01* X-254203Y198908D01* X-254235Y198883D01* X-254268Y198862D01* X-254303Y198843D01* X-254341Y198829D01* X-254379Y198818D01* X-254418Y198811D01* X-254458Y198808D01* X-254498Y198809D01* X-254537Y198814D01* X-254576Y198823D01* X-254614Y198836D01* X-254650Y198852D01* X-254685Y198872D01* X-254717Y198895D01* X-254747Y198922D01* X-254774Y198951D01* X-254798Y198983D01* X-254819Y199017D01* X-254837Y199053D01* X-254850Y199090D01* X-254860Y199129D01* X-254866Y199168D01* X-254868Y199208D01* X-232862Y136770D02* X-225862Y136770D01* X-229362Y136870D02* X-229362Y138470D01* X-260004Y75862D02* X-260004Y72112D01* X-185004Y72112D02* X-185004Y75862D01* X-260004Y95362D02* X-260004Y103362D01* X-185004Y103362D02* X-185004Y95362D01* X-185004Y72112D02* X-260004Y72112D01* D15* X-110490Y186944D02* X-104140Y180594D01* X-110490Y186944D02* X-123190Y186944D01* X-129540Y180594D01* X-129540Y167894D01* X-123190Y161544D01* X-110490Y161544D01* X-104140Y167894D01* X-104140Y180594D01* X-136652Y176276D02* X-143002Y182626D01* X-155702Y182626D01* X-162052Y176276D01* X-162052Y163576D01* X-155702Y157226D01* X-143002Y157226D01* X-136652Y163576D01* X-136652Y176276D01* X-318278Y276082D02* X-368538Y276082D01* X-368538Y251222D02* X-318278Y251222D01* X-356108Y263652D02* X-364998Y263652D01* X-361188Y259842D01* X-364998Y263652D02* X-361188Y267462D01* X-361108Y246652D02* X-365998Y246652D01* X-364188Y244842D01* X-365998Y246652D02* X-364188Y248462D01* X-345694Y184404D02* X-339344Y178054D01* X-345694Y184404D02* X-358394Y184404D01* X-364744Y178054D01* X-364744Y165354D01* X-358394Y159004D01* X-345694Y159004D01* X-339344Y165354D01* X-339344Y178054D01* D14* X-361428Y188990D02* X-362232Y188990D01* X-361428Y188990D02* X-361428Y186309D01* X-363037Y186309D01* X-363102Y186311D01* X-363166Y186317D01* X-363230Y186327D01* X-363294Y186340D01* X-363356Y186358D01* X-363417Y186379D01* X-363477Y186403D01* X-363535Y186432D01* X-363592Y186464D01* X-363646Y186499D01* X-363698Y186537D01* X-363748Y186579D01* X-363795Y186623D01* X-363839Y186670D01* X-363881Y186720D01* X-363919Y186772D01* X-363954Y186826D01* X-363986Y186883D01* X-364015Y186941D01* X-364039Y187001D01* X-364060Y187062D01* X-364078Y187124D01* X-364091Y187188D01* X-364101Y187252D01* X-364107Y187316D01* X-364109Y187381D01* X-364109Y190063D01* X-364107Y190128D01* X-364101Y190192D01* X-364091Y190256D01* X-364078Y190320D01* X-364060Y190382D01* X-364039Y190443D01* X-364015Y190503D01* X-363986Y190561D01* X-363954Y190618D01* X-363919Y190672D01* X-363881Y190724D01* X-363839Y190774D01* X-363795Y190821D01* X-363748Y190865D01* X-363698Y190907D01* X-363646Y190945D01* X-363592Y190980D01* X-363535Y191012D01* X-363477Y191041D01* X-363417Y191065D01* X-363356Y191086D01* X-363294Y191104D01* X-363230Y191117D01* X-363166Y191127D01* X-363102Y191133D01* X-363037Y191135D01* X-361428Y191135D01* X-358257Y191135D02* X-358257Y186309D01* X-355576Y186309D02* X-358257Y191135D01* X-355576Y191135D02* X-355576Y186309D01* X-352405Y186309D02* X-352405Y191135D01* X-351064Y191135D01* X-350994Y191133D01* X-350924Y191128D01* X-350854Y191118D01* X-350785Y191106D01* X-350717Y191089D01* X-350650Y191069D01* X-350583Y191046D01* X-350519Y191019D01* X-350455Y190989D01* X-350394Y190955D01* X-350334Y190919D01* X-350276Y190879D01* X-350220Y190836D01* X-350167Y190791D01* X-350116Y190742D01* X-350067Y190691D01* X-350022Y190638D01* X-349979Y190582D01* X-349939Y190524D01* X-349903Y190465D01* X-349869Y190403D01* X-349839Y190339D01* X-349812Y190275D01* X-349789Y190208D01* X-349769Y190141D01* X-349752Y190073D01* X-349740Y190004D01* X-349730Y189934D01* X-349725Y189864D01* X-349723Y189794D01* X-349724Y189794D02* X-349724Y187650D01* X-349723Y187650D02* X-349725Y187580D01* X-349730Y187510D01* X-349740Y187440D01* X-349752Y187371D01* X-349769Y187303D01* X-349789Y187236D01* X-349812Y187169D01* X-349839Y187105D01* X-349869Y187041D01* X-349903Y186980D01* X-349939Y186920D01* X-349979Y186862D01* X-350022Y186806D01* X-350067Y186753D01* X-350116Y186702D01* X-350167Y186653D01* X-350220Y186608D01* X-350276Y186565D01* X-350334Y186525D01* X-350394Y186489D01* X-350455Y186455D01* X-350519Y186425D01* X-350583Y186398D01* X-350650Y186375D01* X-350717Y186355D01* X-350785Y186338D01* X-350854Y186326D01* X-350924Y186316D01* X-350994Y186311D01* X-351064Y186309D01* X-352405Y186309D01* D15* X-309626Y181356D02* X-303276Y175006D01* X-309626Y181356D02* X-322326Y181356D01* X-328676Y175006D01* X-328676Y162306D01* X-322326Y155956D01* X-309626Y155956D01* X-303276Y162306D01* X-303276Y175006D01* D14* X-328041Y183261D02* X-328041Y188087D01* X-326700Y188087D01* X-326630Y188085D01* X-326560Y188080D01* X-326490Y188070D01* X-326421Y188058D01* X-326353Y188041D01* X-326286Y188021D01* X-326219Y187998D01* X-326155Y187971D01* X-326091Y187941D01* X-326030Y187907D01* X-325970Y187871D01* X-325912Y187831D01* X-325856Y187788D01* X-325803Y187743D01* X-325752Y187694D01* X-325703Y187643D01* X-325658Y187590D01* X-325615Y187534D01* X-325575Y187476D01* X-325539Y187417D01* X-325505Y187355D01* X-325475Y187291D01* X-325448Y187227D01* X-325425Y187160D01* X-325405Y187093D01* X-325388Y187025D01* X-325376Y186956D01* X-325366Y186886D01* X-325361Y186816D01* X-325359Y186746D01* X-325360Y186746D02* X-325360Y184602D01* X-325359Y184602D02* X-325361Y184532D01* X-325366Y184462D01* X-325376Y184392D01* X-325388Y184323D01* X-325405Y184255D01* X-325425Y184188D01* X-325448Y184121D01* X-325475Y184057D01* X-325505Y183993D01* X-325539Y183932D01* X-325575Y183872D01* X-325615Y183814D01* X-325658Y183758D01* X-325703Y183705D01* X-325752Y183654D01* X-325803Y183605D01* X-325856Y183560D01* X-325912Y183517D01* X-325970Y183477D01* X-326030Y183441D01* X-326091Y183407D01* X-326155Y183377D01* X-326219Y183350D01* X-326286Y183327D01* X-326353Y183307D01* X-326421Y183290D01* X-326490Y183278D01* X-326560Y183268D01* X-326630Y183263D01* X-326700Y183261D01* X-328041Y183261D01* X-322640Y183261D02* X-321031Y188087D01* X-319423Y183261D01* X-319825Y184468D02* X-322238Y184468D01* X-315911Y183261D02* X-315911Y188087D01* X-317251Y188087D02* X-314570Y188087D01* X-310790Y188087D02* X-312399Y183261D01* X-309181Y183261D02* X-310790Y188087D01* X-309583Y184468D02* X-311996Y184468D01* X-107508Y266504D02* X-107508Y270444D01* X-111228Y270444D01* X-143808Y270444D02* X-147508Y270444D01* X-147508Y266674D01* X-147508Y234054D02* X-147508Y230444D01* X-143758Y230444D01* X-111388Y230444D02* X-107508Y230444D01* X-107508Y234014D01* D16* X-158218Y262944D02* X-158216Y262998D01* X-158210Y263052D01* X-158200Y263105D01* X-158187Y263158D01* X-158170Y263209D01* X-158149Y263259D01* X-158124Y263307D01* X-158096Y263354D01* X-158065Y263398D01* X-158031Y263440D01* X-157994Y263479D01* X-157954Y263516D01* X-157911Y263549D01* X-157866Y263580D01* X-157819Y263607D01* X-157771Y263630D01* X-157720Y263650D01* X-157669Y263667D01* X-157616Y263679D01* X-157563Y263688D01* X-157509Y263693D01* X-157454Y263694D01* X-157400Y263691D01* X-157347Y263684D01* X-157294Y263673D01* X-157241Y263659D01* X-157190Y263641D01* X-157141Y263619D01* X-157093Y263594D01* X-157047Y263565D01* X-157003Y263533D01* X-156962Y263498D01* X-156924Y263460D01* X-156888Y263419D01* X-156855Y263376D01* X-156825Y263331D01* X-156799Y263283D01* X-156776Y263234D01* X-156757Y263183D01* X-156742Y263132D01* X-156730Y263079D01* X-156722Y263025D01* X-156718Y262971D01* X-156718Y262917D01* X-156722Y262863D01* X-156730Y262809D01* X-156742Y262756D01* X-156757Y262705D01* X-156776Y262654D01* X-156799Y262605D01* X-156825Y262557D01* X-156855Y262512D01* X-156888Y262469D01* X-156924Y262428D01* X-156962Y262390D01* X-157003Y262355D01* X-157047Y262323D01* X-157093Y262294D01* X-157141Y262269D01* X-157190Y262247D01* X-157241Y262229D01* X-157294Y262215D01* X-157347Y262204D01* X-157400Y262197D01* X-157454Y262194D01* X-157509Y262195D01* X-157563Y262200D01* X-157616Y262209D01* X-157669Y262221D01* X-157720Y262238D01* X-157771Y262258D01* X-157819Y262281D01* X-157866Y262308D01* X-157911Y262339D01* X-157954Y262372D01* X-157994Y262409D01* X-158031Y262448D01* X-158065Y262490D01* X-158096Y262534D01* X-158124Y262581D01* X-158149Y262629D01* X-158170Y262679D01* X-158187Y262730D01* X-158200Y262783D01* X-158210Y262836D01* X-158216Y262890D01* X-158218Y262944D01* D14* X-148082Y205740D02* X-146558Y202692D01* X-148082Y205740D02* X-146558Y208788D01* X-146558Y214122D02* X-148082Y217170D01* X-146558Y220218D01* M02* ================================================ FILE: PCB/GerberFiles/soldermask_bottom.gbr ================================================ G04 EAGLE Gerber RS-274X export* G75* %MOMM*% %FSLAX34Y34*% %LPD*% %INSoldermask Bottom*% %IPPOS*% %AMOC8* 5,1,8,0,0,1.08239X$1,22.5*% G01* %ADD10C,5.226800*% %ADD11C,2.006600*% %ADD12R,1.127000X1.727000*% %ADD13C,0.680200*% D10* X-83820Y209804D03* D11* X-116840Y174244D03* X-149352Y169926D03* X-352044Y171704D03* X-315976Y168656D03* D12* X-222504Y109282D03* X-197504Y85282D03* X-247504Y85282D03* D13* X-202946Y101092D03* X-219710Y256540D03* X-219710Y240030D03* X-200660Y256540D03* X-186690Y240030D03* X-186690Y223520D03* X-201930Y223520D03* X-42164Y180594D03* X-56388Y236474D03* X-78740Y280416D03* X-244602Y124968D03* X-294132Y174498D03* X-152146Y274320D03* X-155702Y259080D03* X-291846Y279908D03* X-293624Y256540D03* X-246888Y188468D03* X-114808Y221234D03* X-281178Y256540D03* X-281432Y246634D03* X-293624Y246634D03* X-291846Y270510D03* X-289814Y184150D03* X-243911Y256974D03* X-246380Y217662D03* X-162194Y274010D03* X-238760Y274237D03* X-146050Y231648D03* X-124714Y222250D03* X-64312Y238401D03* X-206610Y136544D03* X-47733Y202438D03* X-212344Y100838D03* X-114180Y197986D03* X-248147Y227009D03* X-106426Y280531D03* X-167640Y207010D03* X-145908Y269860D03* X-238066Y202506D03* X-237998Y188468D03* X-150622Y219456D03* X-223852Y124890D03* X-160422Y250698D03* X-159766Y266700D03* X-231648Y125222D03* X-160620Y242824D03* M02* ================================================ FILE: PCB/GerberFiles/soldermask_top.gbr ================================================ G04 EAGLE Gerber RS-274X export* G75* %MOMM*% %FSLAX34Y34*% %LPD*% %INSoldermask Top*% %IPPOS*% %AMOC8* 5,1,8,0,0,1.08239X$1,22.5*% G01* %ADD10C,5.226800*% %ADD11R,0.584200X0.736600*% %ADD12R,0.736600X0.584200*% %ADD13R,0.627000X0.737000*% %ADD14R,0.727000X0.627000*% %ADD15R,0.727000X0.377000*% %ADD16R,0.377000X0.727000*% %ADD17R,5.527000X5.527000*% %ADD18C,0.219259*% %ADD19C,0.469250*% %ADD20R,0.367000X0.367000*% %ADD21R,0.647000X0.647000*% %ADD22R,0.527000X1.477000*% %ADD23R,1.727000X1.527000*% %ADD24R,1.577000X1.427000*% %ADD25R,2.027000X2.027000*% %ADD26C,2.006600*% %ADD27R,1.143000X2.667000*% %ADD28R,2.903119X2.903119*% %ADD29C,0.154800*% %ADD30R,2.807000X2.807000*% %ADD31R,0.738800X0.938800*% %ADD32C,0.680200*% G36* X-265266Y193105D02* X-265266Y193105D01* X-265264Y193104D01* X-263764Y194604D01* X-263764Y194607D01* X-263763Y194608D01* X-263763Y197008D01* X-263767Y197013D01* X-263768Y197013D01* X-266368Y197013D01* X-266373Y197009D01* X-266373Y197008D01* X-266373Y193108D01* X-266369Y193103D01* X-266368Y193103D01* X-265268Y193103D01* X-265266Y193105D01* G37* G36* X-263763Y185007D02* X-263763Y185007D01* X-263763Y185008D01* X-263763Y187408D01* X-263765Y187410D01* X-263764Y187412D01* X-265264Y188912D01* X-265267Y188912D01* X-265268Y188913D01* X-266368Y188913D01* X-266373Y188909D01* X-266373Y188908D01* X-266373Y185008D01* X-266369Y185003D01* X-266368Y185003D01* X-263768Y185003D01* X-263763Y185007D01* G37* G36* X-256363Y193107D02* X-256363Y193107D01* X-256363Y193108D01* X-256363Y197008D01* X-256367Y197013D01* X-256368Y197013D01* X-258968Y197013D01* X-258973Y197009D01* X-258973Y197008D01* X-258973Y194608D01* X-258971Y194606D01* X-258972Y194604D01* X-257472Y193104D01* X-257469Y193104D01* X-257468Y193103D01* X-256368Y193103D01* X-256363Y193107D01* G37* G36* X-256363Y185007D02* X-256363Y185007D01* X-256363Y185008D01* X-256363Y188908D01* X-256367Y188913D01* X-256368Y188913D01* X-257468Y188913D01* X-257470Y188911D01* X-257472Y188912D01* X-258972Y187412D01* X-258972Y187410D01* X-258973Y187409D01* X-258973Y187408D01* X-258973Y185008D01* X-258969Y185003D01* X-258968Y185003D01* X-256368Y185003D01* X-256363Y185007D01* G37* D10* X-83820Y209804D03* D11* X-263396Y252099D03* X-253744Y252099D03* X-38606Y192790D03* X-48258Y192790D03* D12* X-261880Y271016D03* X-261880Y280668D03* X-280412Y186178D03* X-280412Y195830D03* D11* X-263396Y238631D03* X-253744Y238631D03* X-37084Y231142D03* X-46736Y231142D03* D12* X-81022Y248410D03* X-81022Y258062D03* X-248158Y280662D03* X-248158Y271010D03* D13* X-50374Y178312D03* X-60874Y178312D03* D11* X-58674Y280160D03* X-68326Y280160D03* D12* X-42422Y209800D03* X-42422Y219452D03* D14* X-215138Y132670D03* X-215138Y142670D03* D15* X-235682Y268042D03* X-235682Y263042D03* X-235682Y258042D03* X-235682Y253042D03* X-235682Y248042D03* X-235682Y243042D03* X-235682Y238042D03* X-235682Y233042D03* X-235682Y228042D03* X-235682Y223042D03* X-235682Y218042D03* X-235682Y213042D03* D16* X-229432Y206792D03* X-224432Y206792D03* X-219432Y206792D03* X-214432Y206792D03* X-209432Y206792D03* X-204432Y206792D03* X-199432Y206792D03* X-194432Y206792D03* X-189432Y206792D03* X-184432Y206792D03* X-179432Y206792D03* X-174432Y206792D03* D15* X-168182Y213042D03* X-168182Y218042D03* X-168182Y223042D03* X-168182Y228042D03* X-168182Y233042D03* X-168182Y238042D03* X-168182Y243042D03* X-168182Y248042D03* X-168182Y253042D03* X-168182Y258042D03* X-168182Y263042D03* X-168182Y268042D03* D16* X-174432Y274292D03* X-179432Y274292D03* X-184432Y274292D03* X-189432Y274292D03* X-194432Y274292D03* X-199432Y274292D03* X-204432Y274292D03* X-209432Y274292D03* X-214432Y274292D03* X-219432Y274292D03* X-224432Y274292D03* X-229432Y274292D03* D17* X-201932Y240542D03* D18* X-43125Y247795D02* X-43125Y251373D01* X-43125Y247795D02* X-47203Y247795D01* X-47203Y251373D01* X-43125Y251373D01* X-43125Y249878D02* X-47203Y249878D01* X-43125Y257295D02* X-43125Y260873D01* X-43125Y257295D02* X-47203Y257295D01* X-47203Y260873D01* X-43125Y260873D01* X-43125Y259378D02* X-47203Y259378D01* X-43125Y266795D02* X-43125Y270373D01* X-43125Y266795D02* X-47203Y266795D01* X-47203Y270373D01* X-43125Y270373D01* X-43125Y268878D02* X-47203Y268878D01* X-69125Y270373D02* X-69125Y266795D01* X-73203Y266795D01* X-73203Y270373D01* X-69125Y270373D01* X-69125Y268878D02* X-73203Y268878D01* X-69125Y260873D02* X-69125Y257295D01* X-73203Y257295D01* X-73203Y260873D01* X-69125Y260873D01* X-69125Y259378D02* X-73203Y259378D01* X-69125Y251373D02* X-69125Y247795D01* X-73203Y247795D01* X-73203Y251373D01* X-69125Y251373D01* X-69125Y249878D02* X-73203Y249878D01* D19* X-51125Y248295D02* X-51125Y269873D01* X-51125Y248295D02* X-65203Y248295D01* X-65203Y269873D01* X-51125Y269873D01* X-51125Y252753D02* X-65203Y252753D01* X-65203Y257211D02* X-51125Y257211D01* X-51125Y261669D02* X-65203Y261669D01* X-65203Y266127D02* X-51125Y266127D01* D20* X-257668Y195808D03* X-265068Y195808D03* X-265068Y186208D03* X-257668Y186208D03* D21* G36* X-265942Y191008D02* X-261368Y195582D01* X-256794Y191008D01* X-261368Y186434D01* X-265942Y191008D01* G37* D14* X-229362Y132670D03* X-229362Y142670D03* D12* X-224026Y188464D03* X-224026Y178812D03* D22* X-235504Y113362D03* X-229004Y113362D03* X-222504Y113362D03* X-216004Y113362D03* X-209504Y113362D03* D23* X-254504Y111112D03* X-190504Y111112D03* D24* X-256754Y86612D03* X-188254Y86612D03* D25* X-234504Y86612D03* X-210504Y86612D03* D26* X-116840Y174244D03* X-149352Y169926D03* D27* X-310388Y263652D03* X-376428Y263652D03* D26* X-352044Y171704D03* X-315976Y168656D03* D28* X-127524Y250428D03* D29* X-143147Y261783D02* X-150969Y261783D01* X-150969Y264105D01* X-143147Y264105D01* X-143147Y261783D01* X-143147Y263254D02* X-150969Y263254D01* X-150969Y256783D02* X-143147Y256783D01* X-150969Y256783D02* X-150969Y259105D01* X-143147Y259105D01* X-143147Y256783D01* X-143147Y258254D02* X-150969Y258254D01* X-150969Y251783D02* X-143147Y251783D01* X-150969Y251783D02* X-150969Y254105D01* X-143147Y254105D01* X-143147Y251783D01* X-143147Y253254D02* X-150969Y253254D01* X-150969Y246783D02* X-143147Y246783D01* X-150969Y246783D02* X-150969Y249105D01* X-143147Y249105D01* X-143147Y246783D01* X-143147Y248254D02* X-150969Y248254D01* X-150969Y241783D02* X-143147Y241783D01* X-150969Y241783D02* X-150969Y244105D01* X-143147Y244105D01* X-143147Y241783D01* X-143147Y243254D02* X-150969Y243254D01* X-150969Y236783D02* X-143147Y236783D01* X-150969Y236783D02* X-150969Y239105D01* X-143147Y239105D01* X-143147Y236783D01* X-143147Y238254D02* X-150969Y238254D01* X-138847Y234805D02* X-138847Y226983D01* X-141169Y226983D01* X-141169Y234805D01* X-138847Y234805D01* X-138847Y228454D02* X-141169Y228454D01* X-141169Y229925D02* X-138847Y229925D01* X-138847Y231396D02* X-141169Y231396D01* X-141169Y232867D02* X-138847Y232867D01* X-138847Y234338D02* X-141169Y234338D01* X-133847Y234805D02* X-133847Y226983D01* X-136169Y226983D01* X-136169Y234805D01* X-133847Y234805D01* X-133847Y228454D02* X-136169Y228454D01* X-136169Y229925D02* X-133847Y229925D01* X-133847Y231396D02* X-136169Y231396D01* X-136169Y232867D02* X-133847Y232867D01* X-133847Y234338D02* X-136169Y234338D01* X-128847Y234805D02* X-128847Y226983D01* X-131169Y226983D01* X-131169Y234805D01* X-128847Y234805D01* X-128847Y228454D02* X-131169Y228454D01* X-131169Y229925D02* X-128847Y229925D01* X-128847Y231396D02* X-131169Y231396D01* X-131169Y232867D02* X-128847Y232867D01* X-128847Y234338D02* X-131169Y234338D01* X-123847Y234805D02* X-123847Y226983D01* X-126169Y226983D01* X-126169Y234805D01* X-123847Y234805D01* X-123847Y228454D02* X-126169Y228454D01* X-126169Y229925D02* X-123847Y229925D01* X-123847Y231396D02* X-126169Y231396D01* X-126169Y232867D02* X-123847Y232867D01* X-123847Y234338D02* X-126169Y234338D01* X-118847Y234805D02* X-118847Y226983D01* X-121169Y226983D01* X-121169Y234805D01* X-118847Y234805D01* X-118847Y228454D02* X-121169Y228454D01* X-121169Y229925D02* X-118847Y229925D01* X-118847Y231396D02* X-121169Y231396D01* X-121169Y232867D02* X-118847Y232867D01* X-118847Y234338D02* X-121169Y234338D01* X-113847Y234805D02* X-113847Y226983D01* X-116169Y226983D01* X-116169Y234805D01* X-113847Y234805D01* X-113847Y228454D02* X-116169Y228454D01* X-116169Y229925D02* X-113847Y229925D01* X-113847Y231396D02* X-116169Y231396D01* X-116169Y232867D02* X-113847Y232867D01* X-113847Y234338D02* X-116169Y234338D01* X-111869Y236783D02* X-104047Y236783D01* X-111869Y236783D02* X-111869Y239105D01* X-104047Y239105D01* X-104047Y236783D01* X-104047Y238254D02* X-111869Y238254D01* X-111869Y241783D02* X-104047Y241783D01* X-111869Y241783D02* X-111869Y244105D01* X-104047Y244105D01* X-104047Y241783D01* X-104047Y243254D02* X-111869Y243254D01* X-111869Y246783D02* X-104047Y246783D01* X-111869Y246783D02* X-111869Y249105D01* X-104047Y249105D01* X-104047Y246783D01* X-104047Y248254D02* X-111869Y248254D01* X-111869Y251783D02* X-104047Y251783D01* X-111869Y251783D02* X-111869Y254105D01* X-104047Y254105D01* X-104047Y251783D01* X-104047Y253254D02* X-111869Y253254D01* X-111869Y256783D02* X-104047Y256783D01* X-111869Y256783D02* X-111869Y259105D01* X-104047Y259105D01* X-104047Y256783D01* X-104047Y258254D02* X-111869Y258254D01* X-111869Y261783D02* X-104047Y261783D01* X-111869Y261783D02* X-111869Y264105D01* X-104047Y264105D01* X-104047Y261783D01* X-104047Y263254D02* X-111869Y263254D01* X-113847Y266083D02* X-113847Y273905D01* X-113847Y266083D02* X-116169Y266083D01* X-116169Y273905D01* X-113847Y273905D01* X-113847Y267554D02* X-116169Y267554D01* X-116169Y269025D02* X-113847Y269025D01* X-113847Y270496D02* X-116169Y270496D01* X-116169Y271967D02* X-113847Y271967D01* X-113847Y273438D02* X-116169Y273438D01* X-118847Y273905D02* X-118847Y266083D01* X-121169Y266083D01* X-121169Y273905D01* X-118847Y273905D01* X-118847Y267554D02* X-121169Y267554D01* X-121169Y269025D02* X-118847Y269025D01* X-118847Y270496D02* X-121169Y270496D01* X-121169Y271967D02* X-118847Y271967D01* X-118847Y273438D02* X-121169Y273438D01* X-123847Y273905D02* X-123847Y266083D01* X-126169Y266083D01* X-126169Y273905D01* X-123847Y273905D01* X-123847Y267554D02* X-126169Y267554D01* X-126169Y269025D02* X-123847Y269025D01* X-123847Y270496D02* X-126169Y270496D01* X-126169Y271967D02* X-123847Y271967D01* X-123847Y273438D02* X-126169Y273438D01* X-128847Y273905D02* X-128847Y266083D01* X-131169Y266083D01* X-131169Y273905D01* X-128847Y273905D01* X-128847Y267554D02* X-131169Y267554D01* X-131169Y269025D02* X-128847Y269025D01* X-128847Y270496D02* X-131169Y270496D01* X-131169Y271967D02* X-128847Y271967D01* X-128847Y273438D02* X-131169Y273438D01* X-133847Y273905D02* X-133847Y266083D01* X-136169Y266083D01* X-136169Y273905D01* X-133847Y273905D01* X-133847Y267554D02* X-136169Y267554D01* X-136169Y269025D02* X-133847Y269025D01* X-133847Y270496D02* X-136169Y270496D01* X-136169Y271967D02* X-133847Y271967D01* X-133847Y273438D02* X-136169Y273438D01* X-138847Y273905D02* X-138847Y266083D01* X-141169Y266083D01* X-141169Y273905D01* X-138847Y273905D01* X-138847Y267554D02* X-141169Y267554D01* X-141169Y269025D02* X-138847Y269025D01* X-138847Y270496D02* X-141169Y270496D01* X-141169Y271967D02* X-138847Y271967D01* X-138847Y273438D02* X-141169Y273438D01* D30* X-127508Y250444D03* D12* X-121920Y214376D03* X-121920Y204724D03* X-93218Y248412D03* X-93218Y258064D03* D11* X-82042Y271780D03* X-91694Y271780D03* D12* X-158242Y216154D03* X-158242Y206502D03* X-275336Y280670D03* X-275336Y271018D03* X-259842Y214122D03* X-259842Y223774D03* D31* X-134176Y205740D03* X-142684Y205740D03* X-134176Y217170D03* X-142684Y217170D03* D32* X-202946Y101092D03* X-219710Y256540D03* X-219710Y240030D03* X-200660Y256540D03* X-186690Y240030D03* X-186690Y223520D03* X-201930Y223520D03* X-42164Y180594D03* X-56388Y236474D03* X-78740Y280416D03* X-244602Y124968D03* X-294132Y174498D03* X-152146Y274320D03* X-155702Y259080D03* X-291846Y279908D03* X-293624Y256540D03* X-246888Y188468D03* X-114808Y221234D03* X-281178Y256540D03* X-281432Y246634D03* X-293624Y246634D03* X-291846Y270510D03* X-289814Y184150D03* X-243911Y256974D03* X-246380Y217662D03* X-162194Y274010D03* X-238760Y274237D03* X-146050Y231648D03* X-124714Y222250D03* X-64312Y238401D03* X-206610Y136544D03* X-47733Y202438D03* X-212344Y100838D03* X-114180Y197986D03* X-248147Y227009D03* X-106426Y280531D03* X-167640Y207010D03* X-145908Y269860D03* X-238066Y202506D03* X-237998Y188468D03* X-150622Y219456D03* X-223852Y124890D03* X-160422Y250698D03* X-159766Y266700D03* X-231648Y125222D03* X-160620Y242824D03* M02* ================================================ FILE: PCB/GerberFiles/solderpaste_bottom.gbr ================================================ G04 EAGLE Gerber RS-274X export* G75* %MOMM*% %FSLAX34Y34*% %LPD*% %INSolderpaste Bottom*% %IPPOS*% %AMOC8* 5,1,8,0,0,1.08239X$1,22.5*% G01* %ADD10R,1.000000X1.600000*% D10* X-222504Y109282D03* X-197504Y85282D03* X-247504Y85282D03* M02* ================================================ FILE: PCB/GerberFiles/solderpaste_top.gbr ================================================ G04 EAGLE Gerber RS-274X export* G75* %MOMM*% %FSLAX34Y34*% %LPD*% %INSolderpaste Top*% %IPPOS*% %AMOC8* 5,1,8,0,0,1.08239X$1,22.5*% G01* %ADD10R,0.457200X0.609600*% %ADD11R,0.609600X0.457200*% %ADD12R,0.500000X0.610000*% %ADD13R,0.600000X0.500000*% %ADD14R,0.600000X0.250000*% %ADD15R,0.250000X0.600000*% %ADD16R,5.400000X5.400000*% %ADD17C,0.090000*% %ADD18C,0.350000*% %ADD19R,0.240000X0.240000*% %ADD20R,0.520000X0.520000*% %ADD21R,0.400000X1.350000*% %ADD22R,1.600000X1.400000*% %ADD23R,1.450000X1.300000*% %ADD24R,1.900000X1.900000*% %ADD25R,1.016000X2.540000*% %ADD26R,0.960931X0.959888*% %ADD27R,0.959800X0.959800*% %ADD28R,0.959963X0.960331*% %ADD29R,0.961881X0.961881*% %ADD30C,0.026000*% %ADD31R,0.611800X0.811800*% G36* X-265266Y193105D02* X-265266Y193105D01* X-265264Y193104D01* X-263764Y194604D01* X-263764Y194607D01* X-263763Y194608D01* X-263763Y197008D01* X-263767Y197013D01* X-263768Y197013D01* X-266368Y197013D01* X-266373Y197009D01* X-266373Y197008D01* X-266373Y193108D01* X-266369Y193103D01* X-266368Y193103D01* X-265268Y193103D01* X-265266Y193105D01* G37* G36* X-263763Y185007D02* X-263763Y185007D01* X-263763Y185008D01* X-263763Y187408D01* X-263765Y187410D01* X-263764Y187412D01* X-265264Y188912D01* X-265267Y188912D01* X-265268Y188913D01* X-266368Y188913D01* X-266373Y188909D01* X-266373Y188908D01* X-266373Y185008D01* X-266369Y185003D01* X-266368Y185003D01* X-263768Y185003D01* X-263763Y185007D01* G37* G36* X-256363Y193107D02* X-256363Y193107D01* X-256363Y193108D01* X-256363Y197008D01* X-256367Y197013D01* X-256368Y197013D01* X-258968Y197013D01* X-258973Y197009D01* X-258973Y197008D01* X-258973Y194608D01* X-258971Y194606D01* X-258972Y194604D01* X-257472Y193104D01* X-257469Y193104D01* X-257468Y193103D01* X-256368Y193103D01* X-256363Y193107D01* G37* G36* X-256363Y185007D02* X-256363Y185007D01* X-256363Y185008D01* X-256363Y188908D01* X-256367Y188913D01* X-256368Y188913D01* X-257468Y188913D01* X-257470Y188911D01* X-257472Y188912D01* X-258972Y187412D01* X-258972Y187410D01* X-258973Y187409D01* X-258973Y187408D01* X-258973Y185008D01* X-258969Y185003D01* X-258968Y185003D01* X-256368Y185003D01* X-256363Y185007D01* G37* D10* X-263396Y252099D03* X-253744Y252099D03* X-38606Y192790D03* X-48258Y192790D03* D11* X-261880Y271016D03* X-261880Y280668D03* X-280412Y186178D03* X-280412Y195830D03* D10* X-263396Y238631D03* X-253744Y238631D03* X-37084Y231142D03* X-46736Y231142D03* D11* X-81022Y248410D03* X-81022Y258062D03* X-248158Y280662D03* X-248158Y271010D03* D12* X-50374Y178312D03* X-60874Y178312D03* D10* X-58674Y280160D03* X-68326Y280160D03* D11* X-42422Y209800D03* X-42422Y219452D03* D13* X-215138Y132670D03* X-215138Y142670D03* D14* X-235682Y268042D03* X-235682Y263042D03* X-235682Y258042D03* X-235682Y253042D03* X-235682Y248042D03* X-235682Y243042D03* X-235682Y238042D03* X-235682Y233042D03* X-235682Y228042D03* X-235682Y223042D03* X-235682Y218042D03* X-235682Y213042D03* D15* X-229432Y206792D03* X-224432Y206792D03* X-219432Y206792D03* X-214432Y206792D03* X-209432Y206792D03* X-204432Y206792D03* X-199432Y206792D03* X-194432Y206792D03* X-189432Y206792D03* X-184432Y206792D03* X-179432Y206792D03* X-174432Y206792D03* D14* X-168182Y213042D03* X-168182Y218042D03* X-168182Y223042D03* X-168182Y228042D03* X-168182Y233042D03* X-168182Y238042D03* X-168182Y243042D03* X-168182Y248042D03* X-168182Y253042D03* X-168182Y258042D03* X-168182Y263042D03* X-168182Y268042D03* D15* X-174432Y274292D03* X-179432Y274292D03* X-184432Y274292D03* X-189432Y274292D03* X-194432Y274292D03* X-199432Y274292D03* X-204432Y274292D03* X-209432Y274292D03* X-214432Y274292D03* X-219432Y274292D03* X-224432Y274292D03* X-229432Y274292D03* D16* X-201932Y240542D03* D17* X-43114Y247784D02* X-43114Y251384D01* X-43114Y247784D02* X-47214Y247784D01* X-47214Y251384D01* X-43114Y251384D01* X-43114Y248639D02* X-47214Y248639D01* X-47214Y249494D02* X-43114Y249494D01* X-43114Y250349D02* X-47214Y250349D01* X-47214Y251204D02* X-43114Y251204D01* X-43114Y257284D02* X-43114Y260884D01* X-43114Y257284D02* X-47214Y257284D01* X-47214Y260884D01* X-43114Y260884D01* X-43114Y258139D02* X-47214Y258139D01* X-47214Y258994D02* X-43114Y258994D01* X-43114Y259849D02* X-47214Y259849D01* X-47214Y260704D02* X-43114Y260704D01* X-43114Y266784D02* X-43114Y270384D01* X-43114Y266784D02* X-47214Y266784D01* X-47214Y270384D01* X-43114Y270384D01* X-43114Y267639D02* X-47214Y267639D01* X-47214Y268494D02* X-43114Y268494D01* X-43114Y269349D02* X-47214Y269349D01* X-47214Y270204D02* X-43114Y270204D01* X-69114Y270384D02* X-69114Y266784D01* X-73214Y266784D01* X-73214Y270384D01* X-69114Y270384D01* X-69114Y267639D02* X-73214Y267639D01* X-73214Y268494D02* X-69114Y268494D01* X-69114Y269349D02* X-73214Y269349D01* X-73214Y270204D02* X-69114Y270204D01* X-69114Y260884D02* X-69114Y257284D01* X-73214Y257284D01* X-73214Y260884D01* X-69114Y260884D01* X-69114Y258139D02* X-73214Y258139D01* X-73214Y258994D02* X-69114Y258994D01* X-69114Y259849D02* X-73214Y259849D01* X-73214Y260704D02* X-69114Y260704D01* X-69114Y251384D02* X-69114Y247784D01* X-73214Y247784D01* X-73214Y251384D01* X-69114Y251384D01* X-69114Y248639D02* X-73214Y248639D01* X-73214Y249494D02* X-69114Y249494D01* X-69114Y250349D02* X-73214Y250349D01* X-73214Y251204D02* X-69114Y251204D01* D18* X-51164Y248334D02* X-51164Y269834D01* X-51164Y248334D02* X-65164Y248334D01* X-65164Y269834D01* X-51164Y269834D01* X-51164Y251659D02* X-65164Y251659D01* X-65164Y254984D02* X-51164Y254984D01* X-51164Y258309D02* X-65164Y258309D01* X-65164Y261634D02* X-51164Y261634D01* X-51164Y264959D02* X-65164Y264959D01* X-65164Y268284D02* X-51164Y268284D01* D19* X-257668Y195808D03* X-265068Y195808D03* X-265068Y186208D03* X-257668Y186208D03* D20* G36* X-265044Y191008D02* X-261368Y194684D01* X-257692Y191008D01* X-261368Y187332D01* X-265044Y191008D01* G37* D13* X-229362Y132670D03* X-229362Y142670D03* D11* X-224026Y188464D03* X-224026Y178812D03* D21* X-235504Y113362D03* X-229004Y113362D03* X-222504Y113362D03* X-216004Y113362D03* X-209504Y113362D03* D22* X-254504Y111112D03* X-190504Y111112D03* D23* X-256754Y86612D03* X-188254Y86612D03* D24* X-234504Y86612D03* X-210504Y86612D03* D25* X-310388Y263652D03* X-376428Y263652D03* D26* X-133613Y256545D03* D27* X-121407Y256545D03* D28* X-121408Y244342D03* D29* X-133617Y244335D03* D30* X-143138Y261774D02* X-150978Y261774D01* X-150978Y264114D01* X-143138Y264114D01* X-143138Y261774D01* X-143138Y262021D02* X-150978Y262021D01* X-150978Y262268D02* X-143138Y262268D01* X-143138Y262515D02* X-150978Y262515D01* X-150978Y262762D02* X-143138Y262762D01* X-143138Y263009D02* X-150978Y263009D01* X-150978Y263256D02* X-143138Y263256D01* X-143138Y263503D02* X-150978Y263503D01* X-150978Y263750D02* X-143138Y263750D01* X-143138Y263997D02* X-150978Y263997D01* X-150978Y256774D02* X-143138Y256774D01* X-150978Y256774D02* X-150978Y259114D01* X-143138Y259114D01* X-143138Y256774D01* X-143138Y257021D02* X-150978Y257021D01* X-150978Y257268D02* X-143138Y257268D01* X-143138Y257515D02* X-150978Y257515D01* X-150978Y257762D02* X-143138Y257762D01* X-143138Y258009D02* X-150978Y258009D01* X-150978Y258256D02* X-143138Y258256D01* X-143138Y258503D02* X-150978Y258503D01* X-150978Y258750D02* X-143138Y258750D01* X-143138Y258997D02* X-150978Y258997D01* X-150978Y251774D02* X-143138Y251774D01* X-150978Y251774D02* X-150978Y254114D01* X-143138Y254114D01* X-143138Y251774D01* X-143138Y252021D02* X-150978Y252021D01* X-150978Y252268D02* X-143138Y252268D01* X-143138Y252515D02* X-150978Y252515D01* X-150978Y252762D02* X-143138Y252762D01* X-143138Y253009D02* X-150978Y253009D01* X-150978Y253256D02* X-143138Y253256D01* X-143138Y253503D02* X-150978Y253503D01* X-150978Y253750D02* X-143138Y253750D01* X-143138Y253997D02* X-150978Y253997D01* X-150978Y246774D02* X-143138Y246774D01* X-150978Y246774D02* X-150978Y249114D01* X-143138Y249114D01* X-143138Y246774D01* X-143138Y247021D02* X-150978Y247021D01* X-150978Y247268D02* X-143138Y247268D01* X-143138Y247515D02* X-150978Y247515D01* X-150978Y247762D02* X-143138Y247762D01* X-143138Y248009D02* X-150978Y248009D01* X-150978Y248256D02* X-143138Y248256D01* X-143138Y248503D02* X-150978Y248503D01* X-150978Y248750D02* X-143138Y248750D01* X-143138Y248997D02* X-150978Y248997D01* X-150978Y241774D02* X-143138Y241774D01* X-150978Y241774D02* X-150978Y244114D01* X-143138Y244114D01* X-143138Y241774D01* X-143138Y242021D02* X-150978Y242021D01* X-150978Y242268D02* X-143138Y242268D01* X-143138Y242515D02* X-150978Y242515D01* X-150978Y242762D02* X-143138Y242762D01* X-143138Y243009D02* X-150978Y243009D01* X-150978Y243256D02* X-143138Y243256D01* X-143138Y243503D02* X-150978Y243503D01* X-150978Y243750D02* X-143138Y243750D01* X-143138Y243997D02* X-150978Y243997D01* X-150978Y236774D02* X-143138Y236774D01* X-150978Y236774D02* X-150978Y239114D01* X-143138Y239114D01* X-143138Y236774D01* X-143138Y237021D02* X-150978Y237021D01* X-150978Y237268D02* X-143138Y237268D01* X-143138Y237515D02* X-150978Y237515D01* X-150978Y237762D02* X-143138Y237762D01* X-143138Y238009D02* X-150978Y238009D01* X-150978Y238256D02* X-143138Y238256D01* X-143138Y238503D02* X-150978Y238503D01* X-150978Y238750D02* X-143138Y238750D01* X-143138Y238997D02* X-150978Y238997D01* X-138838Y234814D02* X-138838Y226974D01* X-141178Y226974D01* X-141178Y234814D01* X-138838Y234814D01* X-138838Y227221D02* X-141178Y227221D01* X-141178Y227468D02* X-138838Y227468D01* X-138838Y227715D02* X-141178Y227715D01* X-141178Y227962D02* X-138838Y227962D01* X-138838Y228209D02* X-141178Y228209D01* X-141178Y228456D02* X-138838Y228456D01* X-138838Y228703D02* X-141178Y228703D01* X-141178Y228950D02* X-138838Y228950D01* X-138838Y229197D02* X-141178Y229197D01* X-141178Y229444D02* X-138838Y229444D01* X-138838Y229691D02* X-141178Y229691D01* X-141178Y229938D02* X-138838Y229938D01* X-138838Y230185D02* X-141178Y230185D01* X-141178Y230432D02* X-138838Y230432D01* X-138838Y230679D02* X-141178Y230679D01* X-141178Y230926D02* X-138838Y230926D01* X-138838Y231173D02* X-141178Y231173D01* X-141178Y231420D02* X-138838Y231420D01* X-138838Y231667D02* X-141178Y231667D01* X-141178Y231914D02* X-138838Y231914D01* X-138838Y232161D02* X-141178Y232161D01* X-141178Y232408D02* X-138838Y232408D01* X-138838Y232655D02* X-141178Y232655D01* X-141178Y232902D02* X-138838Y232902D01* X-138838Y233149D02* X-141178Y233149D01* X-141178Y233396D02* X-138838Y233396D01* X-138838Y233643D02* X-141178Y233643D01* X-141178Y233890D02* X-138838Y233890D01* X-138838Y234137D02* X-141178Y234137D01* X-141178Y234384D02* X-138838Y234384D01* X-138838Y234631D02* X-141178Y234631D01* X-133838Y234814D02* X-133838Y226974D01* X-136178Y226974D01* X-136178Y234814D01* X-133838Y234814D01* X-133838Y227221D02* X-136178Y227221D01* X-136178Y227468D02* X-133838Y227468D01* X-133838Y227715D02* X-136178Y227715D01* X-136178Y227962D02* X-133838Y227962D01* X-133838Y228209D02* X-136178Y228209D01* X-136178Y228456D02* X-133838Y228456D01* X-133838Y228703D02* X-136178Y228703D01* X-136178Y228950D02* X-133838Y228950D01* X-133838Y229197D02* X-136178Y229197D01* X-136178Y229444D02* X-133838Y229444D01* X-133838Y229691D02* X-136178Y229691D01* X-136178Y229938D02* X-133838Y229938D01* X-133838Y230185D02* X-136178Y230185D01* X-136178Y230432D02* X-133838Y230432D01* X-133838Y230679D02* X-136178Y230679D01* X-136178Y230926D02* X-133838Y230926D01* X-133838Y231173D02* X-136178Y231173D01* X-136178Y231420D02* X-133838Y231420D01* X-133838Y231667D02* X-136178Y231667D01* X-136178Y231914D02* X-133838Y231914D01* X-133838Y232161D02* X-136178Y232161D01* X-136178Y232408D02* X-133838Y232408D01* X-133838Y232655D02* X-136178Y232655D01* X-136178Y232902D02* X-133838Y232902D01* X-133838Y233149D02* X-136178Y233149D01* X-136178Y233396D02* X-133838Y233396D01* X-133838Y233643D02* X-136178Y233643D01* X-136178Y233890D02* X-133838Y233890D01* X-133838Y234137D02* X-136178Y234137D01* X-136178Y234384D02* X-133838Y234384D01* X-133838Y234631D02* X-136178Y234631D01* X-128838Y234814D02* X-128838Y226974D01* X-131178Y226974D01* X-131178Y234814D01* X-128838Y234814D01* X-128838Y227221D02* X-131178Y227221D01* X-131178Y227468D02* X-128838Y227468D01* X-128838Y227715D02* X-131178Y227715D01* X-131178Y227962D02* X-128838Y227962D01* X-128838Y228209D02* X-131178Y228209D01* X-131178Y228456D02* X-128838Y228456D01* X-128838Y228703D02* X-131178Y228703D01* X-131178Y228950D02* X-128838Y228950D01* X-128838Y229197D02* X-131178Y229197D01* X-131178Y229444D02* X-128838Y229444D01* X-128838Y229691D02* X-131178Y229691D01* X-131178Y229938D02* X-128838Y229938D01* X-128838Y230185D02* X-131178Y230185D01* X-131178Y230432D02* X-128838Y230432D01* X-128838Y230679D02* X-131178Y230679D01* X-131178Y230926D02* X-128838Y230926D01* X-128838Y231173D02* X-131178Y231173D01* X-131178Y231420D02* X-128838Y231420D01* X-128838Y231667D02* X-131178Y231667D01* X-131178Y231914D02* X-128838Y231914D01* X-128838Y232161D02* X-131178Y232161D01* X-131178Y232408D02* X-128838Y232408D01* X-128838Y232655D02* X-131178Y232655D01* X-131178Y232902D02* X-128838Y232902D01* X-128838Y233149D02* X-131178Y233149D01* X-131178Y233396D02* X-128838Y233396D01* X-128838Y233643D02* X-131178Y233643D01* X-131178Y233890D02* X-128838Y233890D01* X-128838Y234137D02* X-131178Y234137D01* X-131178Y234384D02* X-128838Y234384D01* X-128838Y234631D02* X-131178Y234631D01* X-123838Y234814D02* X-123838Y226974D01* X-126178Y226974D01* X-126178Y234814D01* X-123838Y234814D01* X-123838Y227221D02* X-126178Y227221D01* X-126178Y227468D02* X-123838Y227468D01* X-123838Y227715D02* X-126178Y227715D01* X-126178Y227962D02* X-123838Y227962D01* X-123838Y228209D02* X-126178Y228209D01* X-126178Y228456D02* X-123838Y228456D01* X-123838Y228703D02* X-126178Y228703D01* X-126178Y228950D02* X-123838Y228950D01* X-123838Y229197D02* X-126178Y229197D01* X-126178Y229444D02* X-123838Y229444D01* X-123838Y229691D02* X-126178Y229691D01* X-126178Y229938D02* X-123838Y229938D01* X-123838Y230185D02* X-126178Y230185D01* X-126178Y230432D02* X-123838Y230432D01* X-123838Y230679D02* X-126178Y230679D01* X-126178Y230926D02* X-123838Y230926D01* X-123838Y231173D02* X-126178Y231173D01* X-126178Y231420D02* X-123838Y231420D01* X-123838Y231667D02* X-126178Y231667D01* X-126178Y231914D02* X-123838Y231914D01* X-123838Y232161D02* X-126178Y232161D01* X-126178Y232408D02* X-123838Y232408D01* X-123838Y232655D02* X-126178Y232655D01* X-126178Y232902D02* X-123838Y232902D01* X-123838Y233149D02* X-126178Y233149D01* X-126178Y233396D02* X-123838Y233396D01* X-123838Y233643D02* X-126178Y233643D01* X-126178Y233890D02* X-123838Y233890D01* X-123838Y234137D02* X-126178Y234137D01* X-126178Y234384D02* X-123838Y234384D01* X-123838Y234631D02* X-126178Y234631D01* X-118838Y234814D02* X-118838Y226974D01* X-121178Y226974D01* X-121178Y234814D01* X-118838Y234814D01* X-118838Y227221D02* X-121178Y227221D01* X-121178Y227468D02* X-118838Y227468D01* X-118838Y227715D02* X-121178Y227715D01* X-121178Y227962D02* X-118838Y227962D01* X-118838Y228209D02* X-121178Y228209D01* X-121178Y228456D02* X-118838Y228456D01* X-118838Y228703D02* X-121178Y228703D01* X-121178Y228950D02* X-118838Y228950D01* X-118838Y229197D02* X-121178Y229197D01* X-121178Y229444D02* X-118838Y229444D01* X-118838Y229691D02* X-121178Y229691D01* X-121178Y229938D02* X-118838Y229938D01* X-118838Y230185D02* X-121178Y230185D01* X-121178Y230432D02* X-118838Y230432D01* X-118838Y230679D02* X-121178Y230679D01* X-121178Y230926D02* X-118838Y230926D01* X-118838Y231173D02* X-121178Y231173D01* X-121178Y231420D02* X-118838Y231420D01* X-118838Y231667D02* X-121178Y231667D01* X-121178Y231914D02* X-118838Y231914D01* X-118838Y232161D02* X-121178Y232161D01* X-121178Y232408D02* X-118838Y232408D01* X-118838Y232655D02* X-121178Y232655D01* X-121178Y232902D02* X-118838Y232902D01* X-118838Y233149D02* X-121178Y233149D01* X-121178Y233396D02* X-118838Y233396D01* X-118838Y233643D02* X-121178Y233643D01* X-121178Y233890D02* X-118838Y233890D01* X-118838Y234137D02* X-121178Y234137D01* X-121178Y234384D02* X-118838Y234384D01* X-118838Y234631D02* X-121178Y234631D01* X-113838Y234814D02* X-113838Y226974D01* X-116178Y226974D01* X-116178Y234814D01* X-113838Y234814D01* X-113838Y227221D02* X-116178Y227221D01* X-116178Y227468D02* X-113838Y227468D01* X-113838Y227715D02* X-116178Y227715D01* X-116178Y227962D02* X-113838Y227962D01* X-113838Y228209D02* X-116178Y228209D01* X-116178Y228456D02* X-113838Y228456D01* X-113838Y228703D02* X-116178Y228703D01* X-116178Y228950D02* X-113838Y228950D01* X-113838Y229197D02* X-116178Y229197D01* X-116178Y229444D02* X-113838Y229444D01* X-113838Y229691D02* X-116178Y229691D01* X-116178Y229938D02* X-113838Y229938D01* X-113838Y230185D02* X-116178Y230185D01* X-116178Y230432D02* X-113838Y230432D01* X-113838Y230679D02* X-116178Y230679D01* X-116178Y230926D02* X-113838Y230926D01* X-113838Y231173D02* X-116178Y231173D01* X-116178Y231420D02* X-113838Y231420D01* X-113838Y231667D02* X-116178Y231667D01* X-116178Y231914D02* X-113838Y231914D01* X-113838Y232161D02* X-116178Y232161D01* X-116178Y232408D02* X-113838Y232408D01* X-113838Y232655D02* X-116178Y232655D01* X-116178Y232902D02* X-113838Y232902D01* X-113838Y233149D02* X-116178Y233149D01* X-116178Y233396D02* X-113838Y233396D01* X-113838Y233643D02* X-116178Y233643D01* X-116178Y233890D02* X-113838Y233890D01* X-113838Y234137D02* X-116178Y234137D01* X-116178Y234384D02* X-113838Y234384D01* X-113838Y234631D02* X-116178Y234631D01* X-111878Y236774D02* X-104038Y236774D01* X-111878Y236774D02* X-111878Y239114D01* X-104038Y239114D01* X-104038Y236774D01* X-104038Y237021D02* X-111878Y237021D01* X-111878Y237268D02* X-104038Y237268D01* X-104038Y237515D02* X-111878Y237515D01* X-111878Y237762D02* X-104038Y237762D01* X-104038Y238009D02* X-111878Y238009D01* X-111878Y238256D02* X-104038Y238256D01* X-104038Y238503D02* X-111878Y238503D01* X-111878Y238750D02* X-104038Y238750D01* X-104038Y238997D02* X-111878Y238997D01* X-111878Y241774D02* X-104038Y241774D01* X-111878Y241774D02* X-111878Y244114D01* X-104038Y244114D01* X-104038Y241774D01* X-104038Y242021D02* X-111878Y242021D01* X-111878Y242268D02* X-104038Y242268D01* X-104038Y242515D02* X-111878Y242515D01* X-111878Y242762D02* X-104038Y242762D01* X-104038Y243009D02* X-111878Y243009D01* X-111878Y243256D02* X-104038Y243256D01* X-104038Y243503D02* X-111878Y243503D01* X-111878Y243750D02* X-104038Y243750D01* X-104038Y243997D02* X-111878Y243997D01* X-111878Y246774D02* X-104038Y246774D01* X-111878Y246774D02* X-111878Y249114D01* X-104038Y249114D01* X-104038Y246774D01* X-104038Y247021D02* X-111878Y247021D01* X-111878Y247268D02* X-104038Y247268D01* X-104038Y247515D02* X-111878Y247515D01* X-111878Y247762D02* X-104038Y247762D01* X-104038Y248009D02* X-111878Y248009D01* X-111878Y248256D02* X-104038Y248256D01* X-104038Y248503D02* X-111878Y248503D01* X-111878Y248750D02* X-104038Y248750D01* X-104038Y248997D02* X-111878Y248997D01* X-111878Y251774D02* X-104038Y251774D01* X-111878Y251774D02* X-111878Y254114D01* X-104038Y254114D01* X-104038Y251774D01* X-104038Y252021D02* X-111878Y252021D01* X-111878Y252268D02* X-104038Y252268D01* X-104038Y252515D02* X-111878Y252515D01* X-111878Y252762D02* X-104038Y252762D01* X-104038Y253009D02* X-111878Y253009D01* X-111878Y253256D02* X-104038Y253256D01* X-104038Y253503D02* X-111878Y253503D01* X-111878Y253750D02* X-104038Y253750D01* X-104038Y253997D02* X-111878Y253997D01* X-111878Y256774D02* X-104038Y256774D01* X-111878Y256774D02* X-111878Y259114D01* X-104038Y259114D01* X-104038Y256774D01* X-104038Y257021D02* X-111878Y257021D01* X-111878Y257268D02* X-104038Y257268D01* X-104038Y257515D02* X-111878Y257515D01* X-111878Y257762D02* X-104038Y257762D01* X-104038Y258009D02* X-111878Y258009D01* X-111878Y258256D02* X-104038Y258256D01* X-104038Y258503D02* X-111878Y258503D01* X-111878Y258750D02* X-104038Y258750D01* X-104038Y258997D02* X-111878Y258997D01* X-111878Y261774D02* X-104038Y261774D01* X-111878Y261774D02* X-111878Y264114D01* X-104038Y264114D01* X-104038Y261774D01* X-104038Y262021D02* X-111878Y262021D01* X-111878Y262268D02* X-104038Y262268D01* X-104038Y262515D02* X-111878Y262515D01* X-111878Y262762D02* X-104038Y262762D01* X-104038Y263009D02* X-111878Y263009D01* X-111878Y263256D02* X-104038Y263256D01* X-104038Y263503D02* X-111878Y263503D01* X-111878Y263750D02* X-104038Y263750D01* X-104038Y263997D02* X-111878Y263997D01* X-113838Y266074D02* X-113838Y273914D01* X-113838Y266074D02* X-116178Y266074D01* X-116178Y273914D01* X-113838Y273914D01* X-113838Y266321D02* X-116178Y266321D01* X-116178Y266568D02* X-113838Y266568D01* X-113838Y266815D02* X-116178Y266815D01* X-116178Y267062D02* X-113838Y267062D01* X-113838Y267309D02* X-116178Y267309D01* X-116178Y267556D02* X-113838Y267556D01* X-113838Y267803D02* X-116178Y267803D01* X-116178Y268050D02* X-113838Y268050D01* X-113838Y268297D02* X-116178Y268297D01* X-116178Y268544D02* X-113838Y268544D01* X-113838Y268791D02* X-116178Y268791D01* X-116178Y269038D02* X-113838Y269038D01* X-113838Y269285D02* X-116178Y269285D01* X-116178Y269532D02* X-113838Y269532D01* X-113838Y269779D02* X-116178Y269779D01* X-116178Y270026D02* X-113838Y270026D01* X-113838Y270273D02* X-116178Y270273D01* X-116178Y270520D02* X-113838Y270520D01* X-113838Y270767D02* X-116178Y270767D01* X-116178Y271014D02* X-113838Y271014D01* X-113838Y271261D02* X-116178Y271261D01* X-116178Y271508D02* X-113838Y271508D01* X-113838Y271755D02* X-116178Y271755D01* X-116178Y272002D02* X-113838Y272002D01* X-113838Y272249D02* X-116178Y272249D01* X-116178Y272496D02* X-113838Y272496D01* X-113838Y272743D02* X-116178Y272743D01* X-116178Y272990D02* X-113838Y272990D01* X-113838Y273237D02* X-116178Y273237D01* X-116178Y273484D02* X-113838Y273484D01* X-113838Y273731D02* X-116178Y273731D01* X-118838Y273914D02* X-118838Y266074D01* X-121178Y266074D01* X-121178Y273914D01* X-118838Y273914D01* X-118838Y266321D02* X-121178Y266321D01* X-121178Y266568D02* X-118838Y266568D01* X-118838Y266815D02* X-121178Y266815D01* X-121178Y267062D02* X-118838Y267062D01* X-118838Y267309D02* X-121178Y267309D01* X-121178Y267556D02* X-118838Y267556D01* X-118838Y267803D02* X-121178Y267803D01* X-121178Y268050D02* X-118838Y268050D01* X-118838Y268297D02* X-121178Y268297D01* X-121178Y268544D02* X-118838Y268544D01* X-118838Y268791D02* X-121178Y268791D01* X-121178Y269038D02* X-118838Y269038D01* X-118838Y269285D02* X-121178Y269285D01* X-121178Y269532D02* X-118838Y269532D01* X-118838Y269779D02* X-121178Y269779D01* X-121178Y270026D02* X-118838Y270026D01* X-118838Y270273D02* X-121178Y270273D01* X-121178Y270520D02* X-118838Y270520D01* X-118838Y270767D02* X-121178Y270767D01* X-121178Y271014D02* X-118838Y271014D01* X-118838Y271261D02* X-121178Y271261D01* X-121178Y271508D02* X-118838Y271508D01* X-118838Y271755D02* X-121178Y271755D01* X-121178Y272002D02* X-118838Y272002D01* X-118838Y272249D02* X-121178Y272249D01* X-121178Y272496D02* X-118838Y272496D01* X-118838Y272743D02* X-121178Y272743D01* X-121178Y272990D02* X-118838Y272990D01* X-118838Y273237D02* X-121178Y273237D01* X-121178Y273484D02* X-118838Y273484D01* X-118838Y273731D02* X-121178Y273731D01* X-123838Y273914D02* X-123838Y266074D01* X-126178Y266074D01* X-126178Y273914D01* X-123838Y273914D01* X-123838Y266321D02* X-126178Y266321D01* X-126178Y266568D02* X-123838Y266568D01* X-123838Y266815D02* X-126178Y266815D01* X-126178Y267062D02* X-123838Y267062D01* X-123838Y267309D02* X-126178Y267309D01* X-126178Y267556D02* X-123838Y267556D01* X-123838Y267803D02* X-126178Y267803D01* X-126178Y268050D02* X-123838Y268050D01* X-123838Y268297D02* X-126178Y268297D01* X-126178Y268544D02* X-123838Y268544D01* X-123838Y268791D02* X-126178Y268791D01* X-126178Y269038D02* X-123838Y269038D01* X-123838Y269285D02* X-126178Y269285D01* X-126178Y269532D02* X-123838Y269532D01* X-123838Y269779D02* X-126178Y269779D01* X-126178Y270026D02* X-123838Y270026D01* X-123838Y270273D02* X-126178Y270273D01* X-126178Y270520D02* X-123838Y270520D01* X-123838Y270767D02* X-126178Y270767D01* X-126178Y271014D02* X-123838Y271014D01* X-123838Y271261D02* X-126178Y271261D01* X-126178Y271508D02* X-123838Y271508D01* X-123838Y271755D02* X-126178Y271755D01* X-126178Y272002D02* X-123838Y272002D01* X-123838Y272249D02* X-126178Y272249D01* X-126178Y272496D02* X-123838Y272496D01* X-123838Y272743D02* X-126178Y272743D01* X-126178Y272990D02* X-123838Y272990D01* X-123838Y273237D02* X-126178Y273237D01* X-126178Y273484D02* X-123838Y273484D01* X-123838Y273731D02* X-126178Y273731D01* X-128838Y273914D02* X-128838Y266074D01* X-131178Y266074D01* X-131178Y273914D01* X-128838Y273914D01* X-128838Y266321D02* X-131178Y266321D01* X-131178Y266568D02* X-128838Y266568D01* X-128838Y266815D02* X-131178Y266815D01* X-131178Y267062D02* X-128838Y267062D01* X-128838Y267309D02* X-131178Y267309D01* X-131178Y267556D02* X-128838Y267556D01* X-128838Y267803D02* X-131178Y267803D01* X-131178Y268050D02* X-128838Y268050D01* X-128838Y268297D02* X-131178Y268297D01* X-131178Y268544D02* X-128838Y268544D01* X-128838Y268791D02* X-131178Y268791D01* X-131178Y269038D02* X-128838Y269038D01* X-128838Y269285D02* X-131178Y269285D01* X-131178Y269532D02* X-128838Y269532D01* X-128838Y269779D02* X-131178Y269779D01* X-131178Y270026D02* X-128838Y270026D01* X-128838Y270273D02* X-131178Y270273D01* X-131178Y270520D02* X-128838Y270520D01* X-128838Y270767D02* X-131178Y270767D01* X-131178Y271014D02* X-128838Y271014D01* X-128838Y271261D02* X-131178Y271261D01* X-131178Y271508D02* X-128838Y271508D01* X-128838Y271755D02* X-131178Y271755D01* X-131178Y272002D02* X-128838Y272002D01* X-128838Y272249D02* X-131178Y272249D01* X-131178Y272496D02* X-128838Y272496D01* X-128838Y272743D02* X-131178Y272743D01* X-131178Y272990D02* X-128838Y272990D01* X-128838Y273237D02* X-131178Y273237D01* X-131178Y273484D02* X-128838Y273484D01* X-128838Y273731D02* X-131178Y273731D01* X-133838Y273914D02* X-133838Y266074D01* X-136178Y266074D01* X-136178Y273914D01* X-133838Y273914D01* X-133838Y266321D02* X-136178Y266321D01* X-136178Y266568D02* X-133838Y266568D01* X-133838Y266815D02* X-136178Y266815D01* X-136178Y267062D02* X-133838Y267062D01* X-133838Y267309D02* X-136178Y267309D01* X-136178Y267556D02* X-133838Y267556D01* X-133838Y267803D02* X-136178Y267803D01* X-136178Y268050D02* X-133838Y268050D01* X-133838Y268297D02* X-136178Y268297D01* X-136178Y268544D02* X-133838Y268544D01* X-133838Y268791D02* X-136178Y268791D01* X-136178Y269038D02* X-133838Y269038D01* X-133838Y269285D02* X-136178Y269285D01* X-136178Y269532D02* X-133838Y269532D01* X-133838Y269779D02* X-136178Y269779D01* X-136178Y270026D02* X-133838Y270026D01* X-133838Y270273D02* X-136178Y270273D01* X-136178Y270520D02* X-133838Y270520D01* X-133838Y270767D02* X-136178Y270767D01* X-136178Y271014D02* X-133838Y271014D01* X-133838Y271261D02* X-136178Y271261D01* X-136178Y271508D02* X-133838Y271508D01* X-133838Y271755D02* X-136178Y271755D01* X-136178Y272002D02* X-133838Y272002D01* X-133838Y272249D02* X-136178Y272249D01* X-136178Y272496D02* X-133838Y272496D01* X-133838Y272743D02* X-136178Y272743D01* X-136178Y272990D02* X-133838Y272990D01* X-133838Y273237D02* X-136178Y273237D01* X-136178Y273484D02* X-133838Y273484D01* X-133838Y273731D02* X-136178Y273731D01* X-138838Y273914D02* X-138838Y266074D01* X-141178Y266074D01* X-141178Y273914D01* X-138838Y273914D01* X-138838Y266321D02* X-141178Y266321D01* X-141178Y266568D02* X-138838Y266568D01* X-138838Y266815D02* X-141178Y266815D01* X-141178Y267062D02* X-138838Y267062D01* X-138838Y267309D02* X-141178Y267309D01* X-141178Y267556D02* X-138838Y267556D01* X-138838Y267803D02* X-141178Y267803D01* X-141178Y268050D02* X-138838Y268050D01* X-138838Y268297D02* X-141178Y268297D01* X-141178Y268544D02* X-138838Y268544D01* X-138838Y268791D02* X-141178Y268791D01* X-141178Y269038D02* X-138838Y269038D01* X-138838Y269285D02* X-141178Y269285D01* X-141178Y269532D02* X-138838Y269532D01* X-138838Y269779D02* X-141178Y269779D01* X-141178Y270026D02* X-138838Y270026D01* X-138838Y270273D02* X-141178Y270273D01* X-141178Y270520D02* X-138838Y270520D01* X-138838Y270767D02* X-141178Y270767D01* X-141178Y271014D02* X-138838Y271014D01* X-138838Y271261D02* X-141178Y271261D01* X-141178Y271508D02* X-138838Y271508D01* X-138838Y271755D02* X-141178Y271755D01* X-141178Y272002D02* X-138838Y272002D01* X-138838Y272249D02* X-141178Y272249D01* X-141178Y272496D02* X-138838Y272496D01* X-138838Y272743D02* X-141178Y272743D01* X-141178Y272990D02* X-138838Y272990D01* X-138838Y273237D02* X-141178Y273237D01* X-141178Y273484D02* X-138838Y273484D01* X-138838Y273731D02* X-141178Y273731D01* D11* X-121920Y214376D03* X-121920Y204724D03* X-93218Y248412D03* X-93218Y258064D03* D10* X-82042Y271780D03* X-91694Y271780D03* D11* X-158242Y216154D03* X-158242Y206502D03* X-275336Y280670D03* X-275336Y271018D03* X-259842Y214122D03* X-259842Y223774D03* D31* X-134176Y205740D03* X-142684Y205740D03* X-134176Y217170D03* X-142684Y217170D03* M02* ================================================ FILE: README.md ================================================ # BlueCubeMod ESP32 based GameCube Controller Bluetooth conversion for Nintendo Switch v1: Mac/PC/PS4 supported (tested using Dolphin Emulator on Mac, for Switch/RaspberryPi, use an 8Bitdo USB adapter) v2: Switch support only - no adapter required ## Wiring: - Connect pins 23 and 18 to GameCube controller's data pin (Red) - Connect GND to controller's ground pin (Black) ![alt text](Modding%20Resources/GameCube%20Controller%20Pinout%20SideView.jpg?raw=true) ![alt text](Modding%20Resources/GameCube%20Controller%20Pinout%20TopView.png?raw=true) ## Build instructions(v2): - Use this esp-idf fork here: https://github.com/NathanReeves/esp-idf - Set up the esp-idf environment: https://docs.espressif.com/projects/esp-idf/en/latest/get-started/ - Get the BlueCubeModv2 firmware - If you haven’t flashed an ESP32 project before, you need the port name of ESP32 for the config file. If using unix system, to get the port name of a USB device run: `ls /dev` - Find your device on the list and copy it. It should look something like: /dev/cu.usbserial-DO01EXOV or /dev/cu.SLAB_USBtoUART - cd into project folder and run: `make menuconfig` - Paste your port name into Serial Flasher Config -> Default Serial Port - Compile and flash the program, run: `make flash monitor` Resources used: http://www.int03.co.uk/crema/hardware/gamecube/gc-control.htm https://github.com/dekuNukem/Nintendo_Switch_Reverse_Engineering https://github.com/timmeh87/switchnotes Thank you to [@Molorius]( https://github.com/Molorius ) for implementing the bluedroid Classic stack for esp